comparison src/gtkconn.c @ 5872:059d95c67cda

[gaim-migrate @ 6304] The legendary Header File Cleanup! Files now only include what they need. This should reduce the number of files that must recompile when a header file changes. It's a lot nicer. Trust me on it. I also added a couple new header files. I hope I didn't break TOO much! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 14 Jun 2003 23:21:02 +0000
parents 2c04c55222b7
children f5b0c6073264
comparison
equal deleted inserted replaced
5871:508adf90fbb9 5872:059d95c67cda
16 * You should have received a copy of the GNU General Public License 16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software 17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 * 19 *
20 */ 20 */
21 21 #include "internal.h"
22 #include <string.h>
23 #include <gtk/gtk.h>
24 22
25 #include "account.h" 23 #include "account.h"
24 #include "debug.h"
25 #include "notify.h"
26 #include "util.h"
27
26 #include "gtkblist.h" 28 #include "gtkblist.h"
27 #include "gaim.h" 29 #include "gtkutils.h"
28 30
29 #ifdef _WIN32 31 #include "ui.h"
30 #include "win32dep.h"
31 #endif
32 32
33 struct signon_meter { 33 struct signon_meter {
34 GaimAccount *account; 34 GaimAccount *account;
35 GtkWidget *button; 35 GtkWidget *button;
36 GtkWidget *progress; 36 GtkWidget *progress;
279 do_away_message(NULL, message); 279 do_away_message(NULL, message);
280 } 280 }
281 return; 281 return;
282 } 282 }
283 283
284 284 #if 0
285 struct kick_dlg { 285 struct kick_dlg {
286 GaimAccount *account; 286 GaimAccount *account;
287 GtkWidget *dlg; 287 GtkWidget *dlg;
288 }; 288 };
289 static GSList *kicks = NULL; 289 static GSList *kicks = NULL;
370 gaim_event_broadcast(event_error, gc, why); 370 gaim_event_broadcast(event_error, gc, why);
371 g_snprintf(buf, sizeof(buf), _("%s has been signed off"), 371 g_snprintf(buf, sizeof(buf), _("%s has been signed off"),
372 gaim_account_get_username(account)); 372 gaim_account_get_username(account));
373 hide_login_progress_common(gc, why, _("Connection Error"), buf); 373 hide_login_progress_common(gc, why, _("Connection Error"), buf);
374 } 374 }
375 375 #endif