From 1bc8c778760ebbba826f2795a0f30e1ef2d47ec8 Mon Sep 17 00:00:00 2001 From: Diederick Niehorster Date: Thu, 26 Jul 2012 15:11:37 +0000 Subject: [PATCH 1/1] little bit of cleanup and extra comments git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1374 7f0cb862-5218-0410-a997-914c9d46530a --- progs/demos/CallbackMaker/CallbackMaker.c | 4 ++-- src/mswin/fg_window_mswin.c | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/progs/demos/CallbackMaker/CallbackMaker.c b/progs/demos/CallbackMaker/CallbackMaker.c index deb8f4b..6c8730d 100644 --- a/progs/demos/CallbackMaker/CallbackMaker.c +++ b/progs/demos/CallbackMaker/CallbackMaker.c @@ -30,6 +30,8 @@ int mousewheel_number = -1, mousewheel_direction = -1, mousewheel_x = -1, mousew int motion_x = -1, motion_y = -1, motion_seq = -1 ; int passivemotion_x = -1, passivemotion_y = -1, passivemotion_seq = -1 ; +#define STRING_LENGTH 10 + static void bitmapPrintf (const char *fmt, ...) { @@ -143,7 +145,6 @@ Warning(const char *fmt, va_list ap) static void Error(const char *fmt, va_list ap) { -#define STRING_LENGTH 10 char dummy_string[STRING_LENGTH]; printf("%6d Error callback:\n"); @@ -464,7 +465,6 @@ static void Idle ( void ) int main(int argc, char *argv[]) { -#define STRING_LENGTH 10 int freeglut_window, aux_window ; char dummy_string[STRING_LENGTH]; diff --git a/src/mswin/fg_window_mswin.c b/src/mswin/fg_window_mswin.c index 7af029d..2837c5c 100644 --- a/src/mswin/fg_window_mswin.c +++ b/src/mswin/fg_window_mswin.c @@ -888,6 +888,8 @@ void fgPlatformGlutSetWindowTitle( const char* title ) /* * Set the current window's iconified title + * There really isn't a way to set the icon name separate from the + * windows name in Win32, so, just set the windows name. */ void fgPlatformGlutSetIconTitle( const char* title ) { -- 1.7.10.4