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>2005-09-24 20:02:56 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-09-24 20:02:56 +0400
commit8b7c690a0bbd053bc734309b1a82792cdfda8733 (patch)
treebbe1b1838b71e3b0f003fd735fc1eafdd56636e3 /source/blender/src/interface_draw.c
parentb3f0facfbef0bbff79ef6f160a0ac0ad8d85cf8e (diff)
- assorted warning fixes (signedness, float->double)
- added decimate,boolean modifier copydata methods
Diffstat (limited to 'source/blender/src/interface_draw.c')
-rw-r--r--source/blender/src/interface_draw.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/src/interface_draw.c b/source/blender/src/interface_draw.c
index d4be70f8759..84f200a490d 100644
--- a/source/blender/src/interface_draw.c
+++ b/source/blender/src/interface_draw.c
@@ -1713,8 +1713,7 @@ static void ui_draw_but_CHARTAB(uiBut *but)
float sx, sy, ex, ey;
float width, height;
float butw, buth;
- int x, y;
- unsigned long cs;
+ int x, y, cs;
wchar_t wstr[2];
unsigned char ustr[16];
PackedFile *pf;