comparison src/about.c @ 3188:49fb2b634a2a

[gaim-migrate @ 3205] The Robot101 commit. A toc fix (don't use toc) and the possibility to compile iconaway.c on an applet and use it on the standalone app. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 27 Apr 2002 19:41:07 +0000
parents 0dba6ea7d632
children 943e2b3224a9
comparison
equal deleted inserted replaced
3187:01279615a5fe 3188:49fb2b634a2a
65 } 65 }
66 66
67 char *version() 67 char *version()
68 { 68 {
69 return VERSION; 69 return VERSION;
70 }
71
72 gboolean is_applet()
73 {
74 #ifdef USE_APPLET
75 return TRUE;
76 #else
77 return FALSE;
78 #endif
70 } 79 }
71 80
72 void show_about(GtkWidget *w, void *null) 81 void show_about(GtkWidget *w, void *null)
73 { 82 {
74 GtkWidget *vbox; 83 GtkWidget *vbox;