cpw.nader.asynclogging-3: 13113e3c: Fixed a warning related to the progress ...
morshed.nader at gmail.com
morshed.nader at gmail.com
Thu May 12 03:41:35 EDT 2011
----------------------------------------------------------------------
Revision: 13113e3c92cb06574bec6fd83ffcd17639bbe7d5
Parent: cd83e0af9773f39d0cf16554fa694f232541e299
Author: morshed.nader at gmail.com
Date: 05/12/11 03:32:20
Branch: im.pidgin.cpw.nader.asynclogging-3
URL: http://d.pidgin.im/viewmtn/revision/info/13113e3c92cb06574bec6fd83ffcd17639bbe7d5
Changelog:
Fixed a warning related to the progress bar
Changes against parent cd83e0af9773f39d0cf16554fa694f232541e299
patched pidgin/gtklog.c
-------------- next part --------------
============================================================
--- pidgin/gtklog.c 72eb41792b836c88c6a5f589de20c25a6d334898
+++ pidgin/gtklog.c 865a0794fd6d9cb2e58c8f0dde3234fc1a67e1e5
@@ -843,7 +843,7 @@ log_select_cb(GtkTreeSelection *sel, Pid
pidgin_log_data = g_new0(_pidgin_log_data, 1);
pidgin_log_data->is_window_open = TRUE;
- pidgin_log_data->count = 1;
+ pidgin_log_data->total = pidgin_log_data->count = 1;
pidgin_log_data->log_viewer = lv;
pidgin_log_data->log = log;
pidgin_log_data->destroy_handler_id = g_signal_connect_swapped(lv,
@@ -1243,7 +1243,7 @@ pidgin_log_show(PurpleLogChatType chat_t
pidgin_log_data = g_new0(_pidgin_log_data, 1);
pidgin_log_data->is_window_open = TRUE;
- pidgin_log_data->count = 2;
+ pidgin_log_data->total = pidgin_log_data->count = 2;
prpl_icon = pidgin_create_prpl_icon(account, PIDGIN_PRPL_ICON_MEDIUM);
image = gtk_image_new_from_pixbuf(prpl_icon);
More information about the Commits
mailing list