diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2010-04-02 23:47:43 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2010-04-02 23:47:43 +0000 |
| commit | a870a3f925fe2dd16a60f48a956af772988b805b (patch) | |
| tree | 67af056885662f73d181898f742a7c03a3898a34 /src/ui/dialog | |
| parent | 99% German translation update. (diff) | |
| download | inkscape-a870a3f925fe2dd16a60f48a956af772988b805b.tar.gz inkscape-a870a3f925fe2dd16a60f48a956af772988b805b.zip | |
Fix command line invocation on Windows (LP #167455).
Fixed bugs:
- https://launchpad.net/bugs/167455
(bzr r9281)
Diffstat (limited to 'src/ui/dialog')
| -rw-r--r-- | src/ui/dialog/glyphs.cpp | 4 | ||||
| -rw-r--r-- | src/ui/dialog/glyphs.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/glyphs.cpp b/src/ui/dialog/glyphs.cpp index 1c875e8cc..bc96b0575 100644 --- a/src/ui/dialog/glyphs.cpp +++ b/src/ui/dialog/glyphs.cpp @@ -159,8 +159,8 @@ GlyphColumns *GlyphsPanel::getColumns() /** * Constructor */ -GlyphsPanel::GlyphsPanel(gchar const *prefsPath) : - Inkscape::UI::Widget::Panel("", prefsPath, SP_VERB_DIALOG_GLYPHS, "", false), +GlyphsPanel::GlyphsPanel() : + Inkscape::UI::Widget::Panel("", "/dialogs/glyphs", 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 49ead3d6b..b4876f3c1 100644 --- a/src/ui/dialog/glyphs.h +++ b/src/ui/dialog/glyphs.h @@ -43,7 +43,7 @@ class GlyphColumns; class GlyphsPanel : public Inkscape::UI::Widget::Panel { public: - GlyphsPanel(gchar const *prefsPath = "/dialogs/glyphs"); + GlyphsPanel(); virtual ~GlyphsPanel(); static GlyphsPanel& getInstance(); |
