diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2009-11-16 16:23:12 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-11-25 01:29:44 +0800 |
commit | e83c0814113515cdd5a3dc511f7e29cbe51651e8 (patch) | |
tree | 5d3a2c36524fc75d6c0ca7e91764ae4ec2eb3959 /libempathy-gtk/empathy-smiley-manager.h | |
parent | 1af4342a53358f23f71fabd0012a0d868a13c194 (diff) | |
download | gsoc2013-empathy-e83c0814113515cdd5a3dc511f7e29cbe51651e8.tar gsoc2013-empathy-e83c0814113515cdd5a3dc511f7e29cbe51651e8.tar.gz gsoc2013-empathy-e83c0814113515cdd5a3dc511f7e29cbe51651e8.tar.bz2 gsoc2013-empathy-e83c0814113515cdd5a3dc511f7e29cbe51651e8.tar.lz gsoc2013-empathy-e83c0814113515cdd5a3dc511f7e29cbe51651e8.tar.xz gsoc2013-empathy-e83c0814113515cdd5a3dc511f7e29cbe51651e8.tar.zst gsoc2013-empathy-e83c0814113515cdd5a3dc511f7e29cbe51651e8.zip |
Add comments to explain empathy_smiley_manager_parse_len(), it is non-trivial function.
Diffstat (limited to 'libempathy-gtk/empathy-smiley-manager.h')
-rw-r--r-- | libempathy-gtk/empathy-smiley-manager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-smiley-manager.h b/libempathy-gtk/empathy-smiley-manager.h index 99511e8be..f15dbc468 100644 --- a/libempathy-gtk/empathy-smiley-manager.h +++ b/libempathy-gtk/empathy-smiley-manager.h @@ -53,9 +53,9 @@ typedef struct { } EmpathySmiley; typedef struct { - GdkPixbuf *pixbuf; - const gchar *path; - gint start; + GdkPixbuf *pixbuf; /* Pixbuf of the smiley */ + const gchar *path; /* Filename of the smiley image */ + gint start; /* text[start:end] should be replaced by pixbuf */ gint end; } EmpathySmileyHit; |