Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2003-03-24 03:06:40 +0300
committerDaniel Dunbar <daniel@zuster.org>2003-03-24 03:06:40 +0300
commit93e8a05320c2c259be0ed260873b9ff75408d50b (patch)
treef2409700e4c30e442b75ef07d213f8051bd24543 /source/blender/src/editimasel.c
parent510e2d584062e43aab22a16aade93ce332ce003c (diff)
Canonize all space functions to follow the drawXXXspace and winqreadXXXspace
conventions.
Diffstat (limited to 'source/blender/src/editimasel.c')
-rw-r--r--source/blender/src/editimasel.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/blender/src/editimasel.c b/source/blender/src/editimasel.c
index c7843789d6a..8052de6b64c 100644
--- a/source/blender/src/editimasel.c
+++ b/source/blender/src/editimasel.c
@@ -71,10 +71,6 @@
#include "mydevice.h"
#include "interface.h"
-/* locals */
-void draw_icon_imasel(void);
-void winqreadimasel(unsigned short event, short val, char ascii);
-
#define XIC 20
#define YIC 21
@@ -82,12 +78,12 @@ void winqreadimasel(unsigned short event, short val, char ascii);
extern char *fsmenu;
-void draw_icon_imasel(void)
+static void draw_icon_imasel(void)
{
scrarea_queue_winredraw(curarea);
}
-void winqreadimasel(unsigned short event, short val, char ascii)
+void winqreadimaselspace(unsigned short event, short val, char ascii)
{
SpaceImaSel *simasel;