fix small leak
2008-02-19 Jens Granseuer <jensgr@gmx.net> * file-transfer-dialog.c: (file_transfer_dialog_update_num_files): fix small leak svn path=/trunk/; revision=8508
This commit is contained in:
parent
5075b98c62
commit
2dbea1360c
2 changed files with 17 additions and 12 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-02-19 Jens Granseuer <jensgr@gmx.net>
|
||||||
|
|
||||||
|
* file-transfer-dialog.c: (file_transfer_dialog_update_num_files): fix
|
||||||
|
small leak
|
||||||
|
|
||||||
2008-01-25 Jens Granseuer <jensgr@gmx.net>
|
2008-01-25 Jens Granseuer <jensgr@gmx.net>
|
||||||
|
|
||||||
* capplet-stock-icons.c: (capplet_init_stock_icons): remove code
|
* capplet-stock-icons.c: (capplet_init_stock_icons): remove code
|
||||||
|
|
|
@ -91,7 +91,7 @@ file_transfer_dialog_update_num_files (FileTransferDialog *dlg)
|
||||||
{
|
{
|
||||||
gchar *str = NULL;
|
gchar *str = NULL;
|
||||||
if (dlg->priv->total > 1)
|
if (dlg->priv->total > 1)
|
||||||
g_strdup_printf (_("Copying file: %u of %u"),
|
str = g_strdup_printf (_("Copying file: %u of %u"),
|
||||||
dlg->priv->nth, dlg->priv->total);
|
dlg->priv->nth, dlg->priv->total);
|
||||||
gtk_progress_bar_set_text (GTK_PROGRESS_BAR (dlg->priv->progress), str);
|
gtk_progress_bar_set_text (GTK_PROGRESS_BAR (dlg->priv->progress), str);
|
||||||
g_free (str);
|
g_free (str);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue