From 10880dbfba9afd5a963f5bb36fe9a3707c1c35a1 Mon Sep 17 00:00:00 2001 From: Jon Phillips Date: Wed, 23 Aug 2006 07:08:06 +0000 Subject: Ok, committed msgloan's patch to convert gbooleans to bools thus completing one major janitorial task we identified.... (bzr r1633) --- src/file.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/file.cpp') diff --git a/src/file.cpp b/src/file.cpp index de8ab2b5d..9b2b803c6 100644 --- a/src/file.cpp +++ b/src/file.cpp @@ -1097,7 +1097,7 @@ sp_file_print_preview(gpointer object, gpointer data) } -void Inkscape::IO::fixupHrefs( SPDocument *doc, const gchar *base, gboolean spns ) +void Inkscape::IO::fixupHrefs( SPDocument *doc, const gchar *base, bool spns ) { //g_message("Inkscape::IO::fixupHrefs( , [%s], )", base ); @@ -1125,7 +1125,7 @@ void Inkscape::IO::fixupHrefs( SPDocument *doc, const gchar *base, gboolean spns try { URI uri(things[i]); - gboolean isAbs = g_path_is_absolute( things[i] ); + bool isAbs = g_path_is_absolute( things[i] ); gchar *str = uri.toString(); g_message( "abs:%d isRel:%d scheme:[%s] path:[%s][%s] uri[%s] / [%s]", (int)isAbs, (int)uri.isRelative(), @@ -1144,7 +1144,7 @@ void Inkscape::IO::fixupHrefs( SPDocument *doc, const gchar *base, gboolean spns if ( redo == NULL ) { URI again = URI::fromUtf8( things[i] ); - gboolean isAbs = g_path_is_absolute( things[i] ); + bool isAbs = g_path_is_absolute( things[i] ); gchar *str = again.toString(); g_message( "abs:%d isRel:%d scheme:[%s] path:[%s][%s] uri[%s] / [%s]", (int)isAbs, (int)again.isRelative(), -- cgit v1.2.3