~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/extension/internal/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:
97
97
 
98
98
/* Platform detection */
99
99
 
100
 
bool
 
100
gboolean
101
101
PrintWin32::is_os_wide()
102
102
{
103
 
        static bool initialized = FALSE;
104
 
        static bool is_wide = FALSE;
 
103
        static gboolean initialized = FALSE;
 
104
        static gboolean is_wide = FALSE;
105
105
        static OSVERSIONINFOA osver;
106
106
 
107
107
        if ( !initialized )