comparison src/multi.c @ 4082:4b04ecb3eb97

[gaim-migrate @ 4297] (22:54:38) Robot101: * Make sure prefs are saved before plugins are removed, and not afterwards. (22:54:59) Robot101: * Move do_quit() into aim.c and make sure everything appropriate uses it. (22:55:12) Robot101: * Remove duplicated cancel_login for closing the main window, use do_quit instead. (22:55:49) Robot101: * Remove uncalled code pertaining to closing the about window from when it was called via gaim -v. (22:56:06) LSchiere: what's this in sounds? (22:56:29) Robot101: * Add correct ifdefs to prefs so only compiled-in sound methods are shown. (22:56:34) LSchiere: if you broke my sounds... (22:57:07) Robot101: * Remove unused sound order data, and clarify comments and debug output. (22:57:56) Robot101: * Remove duplicated check which is performed at the start of play_file anyway. (22:58:03) Robot101: that's the lot committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 16 Dec 2002 03:58:54 +0000
parents 3ccbdf8e7f8d
children ee884f1d7ae3
comparison
equal deleted inserted replaced
4081:b35cf600fe30 4082:4b04ecb3eb97
147 gtk_widget_destroy(acctedit); 147 gtk_widget_destroy(acctedit);
148 } 148 }
149 acctedit = NULL; 149 acctedit = NULL;
150 treeview = NULL; 150 treeview = NULL;
151 if (!d && !blist && !mainwindow && !connections) 151 if (!d && !blist && !mainwindow && !connections)
152 gtk_main_quit(); 152 do_quit();
153 } 153 }
154 154
155 static gint acctedit_close(GtkWidget *w, gpointer d) 155 static gint acctedit_close(GtkWidget *w, gpointer d)
156 { 156 {
157 gtk_widget_destroy(acctedit); 157 gtk_widget_destroy(acctedit);
158 if (!d && !blist && !mainwindow && !connections) 158 if (!d && !blist && !mainwindow && !connections)
159 gtk_main_quit(); 159 do_quit();
160 return FALSE; 160 return FALSE;
161 } 161 }
162 162
163 static char *proto_name(int proto) 163 static char *proto_name(int proto)
164 { 164 {