changeset 33094:2faf1c3ded5d

Cosmetic: Rearrange variable declarations to match parameters.
author ib
date Fri, 01 Apr 2011 13:00:07 +0000
parents 3de646fca03b
children 772af04413f3
files gui/skin/skin.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/gui/skin/skin.c	Fri Apr 01 12:56:23 2011 +0000
+++ b/gui/skin/skin.c	Fri Apr 01 13:00:07 2011 +0000
@@ -699,9 +699,9 @@
 // slabel=x,y,fontfile,"text"
 static int cmd_slabel(char *in)
 {
-    char txt[256];
+    int x, y, id;
     char fnt[256];
-    int x, y, id;
+    char txt[256];
     wItem *item;
 
     if (!window_cmd("slabel"))
@@ -751,9 +751,9 @@
 // dlabel=x,y,width,align,fontfile,"text"
 static int cmd_dlabel(char *in)
 {
-    char txt[256];
+    int x, y, w, a, id;
     char fnt[256];
-    int x, y, w, id, a;
+    char txt[256];
     wItem *item;
 
     if (!window_cmd("dlabel"))