summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/template-widget.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2013-09-26 23:06:17 +0000
committerJabiertxof <jtx@jtx.marker.es>2013-09-26 23:06:17 +0000
commitdd0b048ba951102b5363bde975f41807cbc6a503 (patch)
treec5e1b3fdaba9bf160b78e30c23d8fc24b401658c /src/ui/dialog/template-widget.cpp
parentupdate to trunk (diff)
parentUse Cairo 1.10 blend operators to render feBlend (diff)
downloadinkscape-dd0b048ba951102b5363bde975f41807cbc6a503.tar.gz
inkscape-dd0b048ba951102b5363bde975f41807cbc6a503.zip
update to trunk
(bzr r12588.1.9)
Diffstat (limited to 'src/ui/dialog/template-widget.cpp')
-rw-r--r--src/ui/dialog/template-widget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/template-widget.cpp b/src/ui/dialog/template-widget.cpp
index 7e34e5a58..898903f2b 100644
--- a/src/ui/dialog/template-widget.cpp
+++ b/src/ui/dialog/template-widget.cpp
@@ -120,7 +120,7 @@ void TemplateWidget::_displayTemplateDetails()
if (_current_template.long_description != "")
message += _("Description: ") + _current_template.long_description + "\n\n";
- if (_current_template.keywords.size() > 0){
+ if (~_current_template.keywords.empty()){
message += _("Keywords: ");
for (std::set<Glib::ustring>::iterator it = _current_template.keywords.begin(); it != _current_template.keywords.end(); ++it)
message += *it + " ";