diff options
| author | Slagvi Public <JandotDarowskiattgmaildottcom> | 2013-07-03 11:35:06 +0000 |
|---|---|---|
| committer | Slagvi Public <JandotDarowskiattgmaildottcom> | 2013-07-03 11:35:06 +0000 |
| commit | ec3d3965f0aa7444d42fc8765abbc9c3ed0916ce (patch) | |
| tree | 2343cccb3cec58a0dc71138b844cb55d0895e7d6 /src/ui/dialog/template-load-tab.cpp | |
| parent | Adding NewFromTemplate to the Inkscape menu (diff) | |
| download | inkscape-ec3d3965f0aa7444d42fc8765abbc9c3ed0916ce.tar.gz inkscape-ec3d3965f0aa7444d42fc8765abbc9c3ed0916ce.zip | |
Templates menu item fixed
(bzr r12379.2.6)
Diffstat (limited to 'src/ui/dialog/template-load-tab.cpp')
| -rw-r--r-- | src/ui/dialog/template-load-tab.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ui/dialog/template-load-tab.cpp b/src/ui/dialog/template-load-tab.cpp index a7b5e63f3..5d4c3a364 100644 --- a/src/ui/dialog/template-load-tab.cpp +++ b/src/ui/dialog/template-load-tab.cpp @@ -1,7 +1,7 @@ +#include "template-load-tab.h" #include <gtkmm/alignment.h> #include <iostream> -#include "template-load-tab.h" namespace Inkscape { namespace UI { @@ -66,10 +66,11 @@ void TemplateLoadTab::_displayTemplateInfo() void TemplateLoadTab::_initKeywordsList() { - _keywords_combo.append_text("All"); + _keywords_combo.append("All"); + // _keywords_combo for (int i = 0 ; i < 10 ; ++i) { - _keywords_combo.append_text( "Keyword" + Glib::ustring::format(i)); + _keywords_combo.append( "Keyword" + Glib::ustring::format(i)); } } |
