summaryrefslogtreecommitdiffstats
path: root/src/dialogs/filedialog-win32.cpp
diff options
context:
space:
mode:
authorJon Phillips <jon@fabricatorz.com>2006-08-25 07:03:19 +0000
committerkidproto <kidproto@users.sourceforge.net>2006-08-25 07:03:19 +0000
commit5d6f51f32ca2356b0d6155015457a83e60b314e8 (patch)
tree835131f8041d12103ea82dc6b23917443f61cd42 /src/dialogs/filedialog-win32.cpp
parentI peeled back my changes because of some deep error. (diff)
downloadinkscape-5d6f51f32ca2356b0d6155015457a83e60b314e8.tar.gz
inkscape-5d6f51f32ca2356b0d6155015457a83e60b314e8.zip
peeled back the gboolean code as it hit on some complexity theory principles...
need to rethink and incrementally change gbooleans to bools (bzr r1637)
Diffstat (limited to 'src/dialogs/filedialog-win32.cpp')
-rw-r--r--src/dialogs/filedialog-win32.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dialogs/filedialog-win32.cpp b/src/dialogs/filedialog-win32.cpp
index 67e949d35..ca9ce5f6c 100644
--- a/src/dialogs/filedialog-win32.cpp
+++ b/src/dialogs/filedialog-win32.cpp
@@ -25,11 +25,11 @@ namespace Dialogs
/*#################################
# U T I L I T Y
#################################*/
-static bool
+static gboolean
win32_is_os_wide()
{
- static bool initialized = FALSE;
- static bool is_wide = FALSE;
+ static gboolean initialized = FALSE;
+ static gboolean is_wide = FALSE;
static OSVERSIONINFOA osver;
if ( !initialized )