Re #307 : Fixed MSVC warnings about unused variables

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@3429 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: c8d0d8ee24340936066b35b3c86f91c93c6c3d71
Former-commit-id: 007166208f54851346b6c9300670f28597a4c57a
This commit is contained in:
pouillot 2011-03-08 16:39:58 +00:00
parent 1930ed6e79
commit d69c3de6a8
2 changed files with 0 additions and 4 deletions

View file

@ -170,7 +170,6 @@ GfuiGrButtonCreate(void *scr, const char *disabled, const char *enabled,
tGfuiGrButton *button;
tGfuiObject *object;
tGfuiScreen *screen = (tGfuiScreen*)scr;
int w, h;
object = (tGfuiObject*)calloc(1, sizeof(tGfuiObject));
object->widget = GFUI_GRBUTTON;
@ -338,7 +337,6 @@ GfuiButtonCreate(void *scr, const char *text, int font, int x, int y, int width,
void *userDataOnFocus, tfuiCallback onFocus, tfuiCallback onFocusLost)
{
tGfuiButton *button;
tGfuiLabel *label;
tGfuiObject *object;
tGfuiScreen *screen = (tGfuiScreen*)scr;

View file

@ -94,8 +94,6 @@ GfuiComboboxCreate(void *scr, int font, int x, int y, int width,
void *userDataOnFocus, tfuiCallback onFocus, tfuiCallback onFocusLost)
{
tGfuiCombobox *combobox;
tGfuiLabel *label;
tGfuiGrButton *leftButton, *rightButton;
tGfuiObject *object;
tGfuiScreen *screen = (tGfuiScreen*)scr;