summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/template-load-tab.cpp
diff options
context:
space:
mode:
authorSlagvi Public <JandotDarowskiattgmaildottcom>2013-07-03 11:35:06 +0000
committerSlagvi Public <JandotDarowskiattgmaildottcom>2013-07-03 11:35:06 +0000
commitec3d3965f0aa7444d42fc8765abbc9c3ed0916ce (patch)
tree2343cccb3cec58a0dc71138b844cb55d0895e7d6 /src/ui/dialog/template-load-tab.cpp
parentAdding NewFromTemplate to the Inkscape menu (diff)
downloadinkscape-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.cpp7
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));
}
}