summaryrefslogtreecommitdiffstats
path: root/src/path-prefix.cpp
diff options
context:
space:
mode:
authorJabiertxo Arraiza Cenoz <jtx@jtx.markerlab.es>2018-07-25 09:46:37 +0000
committerJabiertxo Arraiza Cenoz <jtx@jtx.markerlab.es>2018-07-25 09:46:37 +0000
commit3052c39e53adfe7397987f91f7519d91392ea27f (patch)
tree37feab56ffcb7a681b43a3c0b8bd18737595ab3c /src/path-prefix.cpp
parentFix a compiling bug (diff)
downloadinkscape-3052c39e53adfe7397987f91f7519d91392ea27f.tar.gz
inkscape-3052c39e53adfe7397987f91f7519d91392ea27f.zip
Fix codding style
Diffstat (limited to 'src/path-prefix.cpp')
-rw-r--r--src/path-prefix.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/path-prefix.cpp b/src/path-prefix.cpp
index 75dff6a33..2ef9c4f7d 100644
--- a/src/path-prefix.cpp
+++ b/src/path-prefix.cpp
@@ -23,9 +23,9 @@
#endif
-#include <glib.h>
-#include "path-prefix.h"
#include "io/resource.h"
+#include "path-prefix.h"
+#include <glib.h>
/**
@@ -88,10 +88,10 @@ gchar *get_extensions_path()
}
if (pythonpath) {
- new_pythonpath = g_strdup_printf("%s" G_SEARCHPATH_SEPARATOR_S "%s",
- extdir, pythonpath);
+ new_pythonpath = g_strdup_printf("%s" G_SEARCHPATH_SEPARATOR_S "%s", extdir, pythonpath);
g_free(extdir);
- } else {
+ }
+ else {
new_pythonpath = extdir;
}
@@ -102,7 +102,7 @@ gchar *get_datadir_path()
{
using namespace Inkscape::IO::Resource;
gchar *datadir;
-
+
#ifdef WIN32
datadir = g_win32_locale_filename_from_utf8(profile_path(""));
#else