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:
authorCampbell Barton <ideasman42@gmail.com>2011-02-14 21:20:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-14 21:20:10 +0300
commitba0d167d2a56d4732e90023d51f82b20479fbe69 (patch)
tree060665c8f5a88b053c61aaaa21b2878ac241f3d9 /source/blender/windowmanager/intern/wm_cursors.c
parent20553d4064e790f42fe707b8b6c5e6451e983eb7 (diff)
more vars made static
Diffstat (limited to 'source/blender/windowmanager/intern/wm_cursors.c')
-rw-r--r--source/blender/windowmanager/intern/wm_cursors.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_cursors.c b/source/blender/windowmanager/intern/wm_cursors.c
index f0a416e1c6e..d9d9de3f9e9 100644
--- a/source/blender/windowmanager/intern/wm_cursors.c
+++ b/source/blender/windowmanager/intern/wm_cursors.c
@@ -70,7 +70,7 @@ static GHOST_TStandardCursor convert_cursor(int curs)
}
}
-void window_set_custom_cursor(wmWindow *win, unsigned char mask[16][2],
+static void window_set_custom_cursor(wmWindow *win, unsigned char mask[16][2],
unsigned char bitmap[16][2], int hotx, int hoty)
{
GHOST_SetCustomCursorShape(win->ghostwin, bitmap, mask, hotx, hoty);