Changeset 3396 for trunk/jons-gtk2-gui

Show
Ignore:
Timestamp:
03/22/03 11:35:29 (6 years ago)
Author:
bostjanlah
Message:

Add charset_icon

Location:
trunk/jons-gtk2-gui/src
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/jons-gtk2-gui/src/contact_list.cpp

    r3360 r3396  
    3232GdkPixbuf *online, *offline, *away, *na, *dnd, *occ, *ffc, 
    3333    *invisible, *message_icon, *file_icon, *chat_icon, *url_icon, 
    34     *secure_icon, *birthday_icon, *securebday_icon, *blank_icon; 
     34    *secure_icon, *birthday_icon, *securebday_icon, *blank_icon, 
     35    *charset_icon; 
    3536 
    3637struct SFlash 
  • trunk/jons-gtk2-gui/src/extras.cpp

    r3346 r3396  
    3535#include "pixmaps/securebday.xpm" 
    3636#include "pixmaps/blank.xpm" 
     37#include "pixmaps/charset.xpm" 
    3738 
    3839#include "licq_gtk.h" 
     
    7980} 
    8081 
    81 void do_pixmaps() 
     82void  
     83do_pixmaps() 
    8284{ 
    8385    online = gdk_pixbuf_new_from_xpm_data((const char **)(online_xpm)); 
     
    9799    securebday_icon = gdk_pixbuf_new_from_xpm_data((const char **)(securebday_xpm)); 
    98100    blank_icon = gdk_pixbuf_new_from_xpm_data((const char **)(blank_xpm)); 
     101    charset_icon = gdk_pixbuf_new_from_xpm_data((const char **)(charset_xpm)); 
    99102} 
    100103