Code

Repair arbitrary change lumped in with Win32 fixes of #9281.
authorJon A. Cruz <jon@joncruz.org>
Sat, 3 Apr 2010 06:18:15 +0000 (23:18 -0700)
committerJon A. Cruz <jon@joncruz.org>
Sat, 3 Apr 2010 06:18:15 +0000 (23:18 -0700)
src/ui/dialog/glyphs.cpp
src/ui/dialog/glyphs.h

index c099b071899d848c1fde3ef50f27f894de481af8..6cced05c5a7a4e220a8df3d2217ad778e072e9e2 100644 (file)
@@ -159,8 +159,8 @@ GlyphColumns *GlyphsPanel::getColumns()
 /**
  * Constructor
  */
-GlyphsPanel::GlyphsPanel() :
-    Inkscape::UI::Widget::Panel("", "/dialogs/glyphs", SP_VERB_DIALOG_GLYPHS, "", false),
+GlyphsPanel::GlyphsPanel(gchar const *prefsPath) :
+    Inkscape::UI::Widget::Panel("", prefsPath, SP_VERB_DIALOG_GLYPHS, "", false),
     store(Gtk::ListStore::create(*getColumns())),
     iconView(0),
     entry(0),
index e41472e2448968be5958bcd0a5140c2c24618d7c..ffd5757b03a2570c6f7b06ccf9df1a4f78b5476f 100644 (file)
@@ -44,7 +44,7 @@ class GlyphColumns;
 class GlyphsPanel : public Inkscape::UI::Widget::Panel
 {
 public:
-    GlyphsPanel();
+    GlyphsPanel(gchar const *prefsPath = "/dialogs/glyphs");
     virtual ~GlyphsPanel();
 
     static GlyphsPanel& getInstance();