Mercurial > pidgin
comparison src/aim.c @ 2902:8aa879023839
[gaim-migrate @ 2915]
someone complained that this didn't look pretty. SO I REMOVED IT! WHO'S COMPLAINING NOW!
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Thu, 20 Dec 2001 19:51:59 +0000 |
parents | 51999a36c0b1 |
children | 7239a392486c |
comparison
equal
deleted
inserted
replaced
2901:966f623dbd35 | 2902:8aa879023839 |
---|---|
328 | 328 |
329 hbox = gtk_hbox_new(TRUE, 10); | 329 hbox = gtk_hbox_new(TRUE, 10); |
330 gtk_box_pack_start(GTK_BOX(sbox), hbox, TRUE, TRUE, 0); | 330 gtk_box_pack_start(GTK_BOX(sbox), hbox, TRUE, TRUE, 0); |
331 gtk_widget_show(hbox); | 331 gtk_widget_show(hbox); |
332 | 332 |
333 reg = gtk_button_new_with_label(_("Help")); | 333 reg = gtk_button_new_with_label(_("About")); |
334 options = gtk_button_new_with_label(_("Options")); | 334 options = gtk_button_new_with_label(_("Options")); |
335 #ifdef GAIM_PLUGINS | 335 #ifdef GAIM_PLUGINS |
336 plugs = gtk_button_new_with_label(_("Plugins")); | 336 plugs = gtk_button_new_with_label(_("Plugins")); |
337 #endif | 337 #endif |
338 if (misc_options & OPT_MISC_COOL_LOOK) { | 338 if (misc_options & OPT_MISC_COOL_LOOK) { |
341 #ifdef GAIM_PLUGINS | 341 #ifdef GAIM_PLUGINS |
342 gtk_button_set_relief(GTK_BUTTON(plugs), GTK_RELIEF_NONE); | 342 gtk_button_set_relief(GTK_BUTTON(plugs), GTK_RELIEF_NONE); |
343 #endif | 343 #endif |
344 } | 344 } |
345 | 345 |
346 gtk_signal_connect(GTK_OBJECT(reg), "clicked", GTK_SIGNAL_FUNC(gaim_help), NULL); | 346 gtk_signal_connect(GTK_OBJECT(reg), "clicked", GTK_SIGNAL_FUNC(show_about), NULL); |
347 gtk_signal_connect(GTK_OBJECT(options), "clicked", GTK_SIGNAL_FUNC(show_prefs), NULL); | 347 gtk_signal_connect(GTK_OBJECT(options), "clicked", GTK_SIGNAL_FUNC(show_prefs), NULL); |
348 #ifdef GAIM_PLUGINS | 348 #ifdef GAIM_PLUGINS |
349 gtk_signal_connect(GTK_OBJECT(plugs), "clicked", GTK_SIGNAL_FUNC(show_plugins), NULL); | 349 gtk_signal_connect(GTK_OBJECT(plugs), "clicked", GTK_SIGNAL_FUNC(show_plugins), NULL); |
350 #endif | 350 #endif |
351 | 351 |