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
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));
+ g_assert(GTK_IS_TREE_ENTRY(entry));
/* free previous if it exists */
if(entry->label)
/* free previous if it exists */
if(entry->label)