Mercurial > pidgin
diff src/about.c @ 1009:d496fe2614a6
[gaim-migrate @ 1019]
command-line options for the app. not for the applet because most of the time you don't run it from the command line anyway. thanks bmiller
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Fri, 20 Oct 2000 00:35:30 +0000 |
| parents | fa681641643d |
| children | f3e0f41beddb |
line wrap: on
line diff
--- a/src/about.c Thu Oct 19 22:34:22 2000 +0000 +++ b/src/about.c Fri Oct 20 00:35:30 2000 +0000 @@ -121,14 +121,17 @@ button = gtk_button_new_with_label("Close"); - if (null == NULL) /* there's a mindtrip */ + if (null == NULL) {/* there's a mindtrip */ gtk_signal_connect_object(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(destroy_about), GTK_OBJECT(about)); - else + gtk_signal_connect(GTK_OBJECT(about), "destroy", + GTK_SIGNAL_FUNC(destroy_about), GTK_OBJECT(about)); + } else { gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(version_exit), NULL); - gtk_signal_connect(GTK_OBJECT(about), "destroy", - GTK_SIGNAL_FUNC(destroy_about), GTK_OBJECT(about)); + gtk_signal_connect(GTK_OBJECT(about), "destroy", + GTK_SIGNAL_FUNC(version_exit), NULL); + } if (display_options & OPT_DISP_COOL_LOOK) gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE);
