comparison src/aim.c @ 940:9fca1293f871

[gaim-migrate @ 950] Patches from kylev committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Sun, 01 Oct 2000 00:20:03 +0000
parents f3c23b3c1ed7
children 0c3bdd59f983
comparison
equal deleted inserted replaced
939:69955d88ab42 940:9fca1293f871
64 64
65 GList *permit = NULL; 65 GList *permit = NULL;
66 GList *deny = NULL; 66 GList *deny = NULL;
67 GList *log_conversations = NULL; 67 GList *log_conversations = NULL;
68 GList *buddy_pounces = NULL; 68 GList *buddy_pounces = NULL;
69 GList *away_messages = NULL; 69 GSList *away_messages = NULL;
70 GList *groups = NULL; 70 GSList *groups = NULL;
71 GList *buddy_chats = NULL; 71 GList *buddy_chats = NULL;
72 GList *conversations = NULL; 72 GList *conversations = NULL;
73 GList *chat_rooms = NULL; 73 GList *chat_rooms = NULL;
74 74
75 GtkWidget *mainwindow = NULL; 75 GtkWidget *mainwindow = NULL;
129 gtk_statusbar_pop(GTK_STATUSBAR(notice), 1); 129 gtk_statusbar_pop(GTK_STATUSBAR(notice), 1);
130 gtk_statusbar_push(GTK_STATUSBAR(notice), 1, whattosay); 130 gtk_statusbar_push(GTK_STATUSBAR(notice), 1, whattosay);
131 131
132 while (gtk_events_pending()) 132 while (gtk_events_pending())
133 gtk_main_iteration(); 133 gtk_main_iteration();
134
135 /* Why do I need these? */
136 usleep(10);
137 while (gtk_events_pending())
138 gtk_main_iteration();
139
140 } 134 }
141 135
142 void hide_login_progress(char *why) 136 void hide_login_progress(char *why)
143 { 137 {
144 gtk_progress_bar_update(GTK_PROGRESS_BAR(progress), 138 gtk_progress_bar_update(GTK_PROGRESS_BAR(progress),
145 0); 139 0);
146 gtk_statusbar_pop(GTK_STATUSBAR(notice), 1); 140 gtk_statusbar_pop(GTK_STATUSBAR(notice), 1);
147 gtk_statusbar_push(GTK_STATUSBAR(notice), 1, why); 141 gtk_statusbar_push(GTK_STATUSBAR(notice), 1, why);
148 142
149 while (gtk_events_pending()) 143 while (gtk_events_pending())
150 gtk_main_iteration();
151
152 /* Why do I need these? */
153 usleep(10);
154 while (gtk_events_pending())
155 gtk_main_iteration(); 144 gtk_main_iteration();
156 } 145 }
157 146
158 static int snd_tmout; 147 static int snd_tmout;
159 int logins_not_muted = 1; 148 int logins_not_muted = 1;