~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/dialogs/filedialog-win32.cpp

  • Committer: kidproto
  • Date: 2006-08-25 07:03:19 UTC
  • Revision ID: kidproto@users.sourceforge.net-20060825070319-49nso3fdlwuveifv
peeled back the gboolean code as it hit on some complexity theory principles...
need to rethink and incrementally change gbooleans to bools

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
/*#################################
26
26
# U T I L I T Y
27
27
#################################*/
28
 
static bool
 
28
static gboolean
29
29
win32_is_os_wide()
30
30
{
31
 
        static bool initialized = FALSE;
32
 
        static bool is_wide = FALSE;
 
31
        static gboolean initialized = FALSE;
 
32
        static gboolean is_wide = FALSE;
33
33
        static OSVERSIONINFOA osver;
34
34
 
35
35
        if ( !initialized )