summaryrefslogtreecommitdiffstats
path: root/src/widgets/icon.cpp
diff options
context:
space:
mode:
authorLiam P. White <inkscapebrony@gmail.com>2014-06-26 19:40:39 +0000
committerLiam P. White <inkscapebrony@gmail.com>2014-06-26 19:40:39 +0000
commit1ed5e67c01975040a78765a1cf97b942d736c14b (patch)
tree03edf93ade2b20003f04a517edb3b453efed970c /src/widgets/icon.cpp
parent4. further refactor Application class; create proper singleton, encapsulate m... (diff)
downloadinkscape-1ed5e67c01975040a78765a1cf97b942d736c14b.tar.gz
inkscape-1ed5e67c01975040a78765a1cf97b942d736c14b.zip
Convert accidental member accesses into static function accesses
(bzr r13341.5.7)
Diffstat (limited to 'src/widgets/icon.cpp')
-rw-r--r--src/widgets/icon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/icon.cpp b/src/widgets/icon.cpp
index 214990b6b..e0b834961 100644
--- a/src/widgets/icon.cpp
+++ b/src/widgets/icon.cpp
@@ -1257,7 +1257,7 @@ std::list<gchar*> &IconImpl::icons_svg_paths()
static bool initialized = false;
if (!initialized) {
// Fall back from user prefs dir into system locations.
- gchar *userdir = INKSCAPE->profile_path("icons");
+ gchar *userdir = Inkscape::Application::profile_path("icons");
sources.push_back(g_build_filename(userdir,"icons.svg", NULL));
sources.push_back(g_build_filename(INKSCAPE_PIXMAPDIR, "icons.svg", NULL));
g_free(userdir);