Wed, 25 Aug 2004 03:09:08 +0000
[gaim-migrate @ 10742]
Whitespace and comment changes, mostly. And changed a few other things
that aren't ansi c...
--- a/plugins/docklet/docklet-win32.c Wed Aug 25 02:04:38 2004 +0000 +++ b/plugins/docklet/docklet-win32.c Wed Aug 25 03:09:08 2004 +0000 @@ -128,7 +128,7 @@ RegisterClassEx(&wcex); - // Create the window + /* Create the window */ return (CreateWindow(wname, "", 0, 0, 0, 0, 0, GetDesktopWindow(), NULL, wgaim_hinstance(), 0)); }
--- a/plugins/filectl.c Wed Aug 25 02:04:38 2004 +0000 +++ b/plugins/filectl.c Wed Aug 25 03:09:08 2004 +0000 @@ -92,10 +92,10 @@ c = gaim_find_conversation(arg1); if (c) { - /* disable for now - gaim_conversation_write(c, arg2, WFLAG_SEND, NULL, time(NULL), -1); - serv_send_im(c->gc, arg1, arg2, 0); - */ + /* disable for now + gaim_conversation_write(c, arg2, WFLAG_SEND, NULL, time(NULL), -1); + serv_send_im(c->gc, arg1, arg2, 0); + */ } free(arg1); free(arg2); @@ -104,13 +104,13 @@ serv_set_away_all(arg1); free(arg1); } else if (!strncasecmp(command, "hide", 4)) { - //hide_buddy_list(); + /* hide_buddy_list(); */ } else if (!strncasecmp(command, "unhide", 6)) { - //unhide_buddy_list(); + /* unhide_buddy_list(); */ } else if (!strncasecmp(command, "back", 4)) { - //do_im_back(); + /* do_im_back(); */ } else if (!strncasecmp(command, "quit", 4)) { - //gaim_core_quit(); + /* gaim_core_quit(); */ } free(command); }
--- a/plugins/timestamp.c Wed Aug 25 02:04:38 2004 +0000 +++ b/plugins/timestamp.c Wed Aug 25 03:09:08 2004 +0000 @@ -70,7 +70,7 @@ static gboolean timestamp_displaying_conv_msg(GaimAccount *account, GaimConversation *conv, - char **buffer, void *data) + char **buffer, void *data) { int is_timestamp_enabled; @@ -221,7 +221,7 @@ gaim_signal_connect(conv_handle, "conversation-created", plugin, GAIM_CALLBACK(timestamp_new_convo), NULL); - //record IM display events for each conversation + /* record IM display events for each conversation */ gaim_signal_connect(conv_handle, "receiving-im-msg", plugin, GAIM_CALLBACK(timestamp_receiving_msg), NULL); gaim_signal_connect(conv_handle, "displaying-im-msg",
--- a/src/gtkconv.c Wed Aug 25 02:04:38 2004 +0000 +++ b/src/gtkconv.c Wed Aug 25 03:09:08 2004 +0000 @@ -171,6 +171,8 @@ gtkconv = GAIM_GTK_CONVERSATION(conv); + gtk_imhtml_scroll_to_end((GtkIMHtml *)gtkconv->imhtml); + /* we only save the new height if the formatting toolbar visibility matches the pref */ saveheight = (gtkconv->show_formatting_toolbar == gaim_prefs_get_bool("/gaim/gtk/conversations/show_formatting_toolbar"));