changeset 33093:3de646fca03b

Cosmetic: Rearrange variable declarations to match parameters.
author ib
date Fri, 01 Apr 2011 12:56:23 +0000
parents 83052a4ac698
children 2faf1c3ded5d
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:48:40 2011 +0000
+++ b/gui/skin/skin.c	Fri Apr 01 12:56:23 2011 +0000
@@ -497,10 +497,10 @@
 // hpotmeter=button,bwidth,bheight,phases,numphases,default,x,y,width,height,message
 static int cmd_hpotmeter(char *in)
 {
-    int x, y, pwidth, pheight, ph, w, h, message, d;
-    unsigned char buf[512];
     unsigned char pfname[256];
     unsigned char phfname[256];
+    unsigned char buf[512];
+    int pwidth, pheight, ph, d, x, y, w, h, message;
     wItem *item;
 
     if (!window_cmd("h/v potmeter"))
@@ -594,9 +594,9 @@
 // potmeter=phases,numphases,default,x,y,width,height,message
 static int cmd_potmeter(char *in)
 {
-    int x, y, ph, w, h, message, d;
+    unsigned char phfname[256];
     unsigned char buf[512];
-    unsigned char phfname[256];
+    int ph, d, x, y, w, h, message;
     wItem *item;
 
     if (!window_cmd("potmeter"))