diff gui/ui/main.c @ 35762:6742a91ba28a

Cosmetic: Remove "Handle(r)" from function names.
author ib
date Thu, 24 Jan 2013 17:08:38 +0000
parents afb55738b1b7
children ce6de800ee29
line wrap: on
line diff
--- a/gui/ui/main.c	Thu Jan 24 16:59:28 2013 +0000
+++ b/gui/ui/main.c	Thu Jan 24 17:08:38 2013 +0000
@@ -419,7 +419,7 @@
   }
 }
 
-void uiMainMouseHandle( int Button,int X,int Y,int RX,int RY )
+void uiMainMouse( int Button,int X,int Y,int RX,int RY )
 {
  static int     itemtype = 0;
         int     i;
@@ -521,7 +521,7 @@
                  wsWindowMove( &guiApp.mainWindow,True,RX - abs( sx ),RY - abs( sy ) );
                  break;
             case itPRMButton:
-                 uiMenuMouseHandle( RX,RY );
+                 uiMenuMouse( RX,RY );
                  break;
             case itPotmeter:
                  item->value=(float)( X - item->x ) / item->width * 100.0f;
@@ -541,7 +541,7 @@
   }
 }
 
-void uiMainKeyHandle( int KeyCode,int Type,int Key )
+void uiMainKey( int KeyCode,int Type,int Key )
 {
  int msg = evNone;
 
@@ -588,7 +588,7 @@
 }
 
 /* this will be used to handle drag & drop files */
-void uiDNDHandler(int num,char** files)
+void uiDND(int num,char** files)
 {
   struct stat buf;
   int f = 0;