diff src/aim.c @ 338:9d258a0aa560

[gaim-migrate @ 348] Whoa, all kinds of things happened here. The applet looks better. The preferences dialog changes based on your compile-time options (oscar, gnome). Whispering works again. libfaim got updated; it can almost do RVOUS stuff, and hopefully soon can make requests too. The applet doesn't need to have its sounds go through GNOME, although it still can. There is code to facilitate SOCKS5 support (all that needs to be done is to actually write the code to communicate with the proxy server). committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 06 Jun 2000 09:55:30 +0000
parents a88b889b692b
children f4fba304b236
line wrap: on
line diff
--- a/src/aim.c	Tue Jun 06 09:36:12 2000 +0000
+++ b/src/aim.c	Tue Jun 06 09:55:30 2000 +0000
@@ -66,6 +66,7 @@
 char toc_addy[16];
 char *quad_addr = NULL;
 
+gboolean running = FALSE; /* whether or not we're currently trying to sign on */
 
 void cancel_logon(void)
 {
@@ -119,7 +120,6 @@
 }
 
 char g_screenname[ 64 ];	/* gotta be enough */
-gboolean running = FALSE;
 
 void dologin(GtkWidget *widget, GtkWidget *w)
 {
@@ -183,11 +183,6 @@
 #ifdef USE_APPLET
 	 applet_widget_unregister_callback(APPLET_WIDGET(applet),"signon");
 	 applet_widget_register_callback(APPLET_WIDGET(applet),
-			 "buddy",
-			 _("Buddy List"),
-			 (AppletCallbackFunc)createOnlinePopup,
-			 NULL);
-	 applet_widget_register_callback(APPLET_WIDGET(applet),
 			 "signoff",
 			 _("Signoff"),
 			 signoff,
@@ -477,7 +472,7 @@
 int main(int argc, char *argv[])
 {
 #ifdef USE_APPLET
-        InitAppletMgr( argc, argv );
+        init_applet_mgr(argc, argv);
 #elif defined USE_THEMES         
         gnome_init("GAIM",NULL,argc,argv);
 #else