summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8a91529)
raw | patch | inline | side by side (parent: 8a91529)
author | Jon A. Cruz <jon@joncruz.org> | |
Sat, 3 Apr 2010 06:18:15 +0000 (23:18 -0700) | ||
committer | Jon A. Cruz <jon@joncruz.org> | |
Sat, 3 Apr 2010 06:18:15 +0000 (23:18 -0700) |
src/ui/dialog/glyphs.cpp | patch | blob | history | |
src/ui/dialog/glyphs.h | patch | blob | history |
index c099b071899d848c1fde3ef50f27f894de481af8..6cced05c5a7a4e220a8df3d2217ad778e072e9e2 100644 (file)
--- a/src/ui/dialog/glyphs.cpp
+++ b/src/ui/dialog/glyphs.cpp
/**
* 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),
diff --git a/src/ui/dialog/glyphs.h b/src/ui/dialog/glyphs.h
index e41472e2448968be5958bcd0a5140c2c24618d7c..ffd5757b03a2570c6f7b06ccf9df1a4f78b5476f 100644 (file)
--- a/src/ui/dialog/glyphs.h
+++ b/src/ui/dialog/glyphs.h
class GlyphsPanel : public Inkscape::UI::Widget::Panel
{
public:
- GlyphsPanel();
+ GlyphsPanel(gchar const *prefsPath = "/dialogs/glyphs");
virtual ~GlyphsPanel();
static GlyphsPanel& getInstance();