Bug 556835 – gtkentry.c: variable is declared at middle of block

2008-10-24  Matthias Clasen  <mclasen@redhat.com>

        Bug 556835 – gtkentry.c: variable is declared at middle of block

        * gtk/gtkentry.c (gtk_entry_copy_clipboard): Fix a C99ism pointed
        out by Kazuki Iwamoto


svn path=/trunk/; revision=21707
This commit is contained in:
Matthias Clasen 2008-10-24 04:18:48 +00:00 committed by Matthias Clasen
parent cdef5cdc49
commit 5899bbd492
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2008-10-24 Matthias Clasen <mclasen@redhat.com>
Bug 556835 gtkentry.c: variable is declared at middle of block
* gtk/gtkentry.c (gtk_entry_copy_clipboard): Fix a C99ism pointed
out by Kazuki Iwamoto
2008-10-24 Matthias Clasen <mclasen@redhat.com>
Bug 557524 "va_end(args);" should be added into

View File

@ -3122,6 +3122,7 @@ gtk_entry_copy_clipboard (GtkEntry *entry)
{
GtkEditable *editable = GTK_EDITABLE (entry);
gint start, end;
gchar *str;
if (gtk_editable_get_selection_bounds (editable, &start, &end))
{
@ -3131,7 +3132,7 @@ gtk_entry_copy_clipboard (GtkEntry *entry)
return;
}
gchar *str = gtk_entry_get_public_chars (entry, start, end);
str = gtk_entry_get_public_chars (entry, start, end);
gtk_clipboard_set_text (gtk_widget_get_clipboard (GTK_WIDGET (entry),
GDK_SELECTION_CLIPBOARD),
str, -1);