]> git.saurik.com Git - wxWidgets.git/commitdiff
Declare variables before doing anything else in C code.
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 4 May 2012 20:35:44 +0000 (20:35 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 4 May 2012 20:35:44 +0000 (20:35 +0000)
Don't put statements before variable declaration in C source file. This fixes
compilation with non C99-compliant C compilers such as MSVC.

See #14224.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71359 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/treeentry_gtk.c

index e652f83231112176dbfde0a88f5fb2e57cdf59a3..b890df7a2385f988a122e1e14921d6c53c928e08 100644 (file)
@@ -95,8 +95,8 @@ gpointer   gtk_tree_entry_get_userdata  (GtkTreeEntry* entry)
 
 void     gtk_tree_entry_set_label       (GtkTreeEntry* entry, const gchar* label)
 {
 
 void     gtk_tree_entry_set_label       (GtkTreeEntry* entry, const gchar* label)
 {
-    g_assert(GTK_IS_TREE_ENTRY(entry));
     gchar *temp;
     gchar *temp;
+    g_assert(GTK_IS_TREE_ENTRY(entry));
 
     /* free previous if it exists */
     if(entry->label)
 
     /* free previous if it exists */
     if(entry->label)