diff options
| author | Markus Engel <markus.engel@tum.de> | 2014-07-22 19:16:52 +0000 |
|---|---|---|
| committer | Markus Engel <markus.engel@tum.de> | 2014-07-22 19:16:52 +0000 |
| commit | d7c36cd293ee35f53a5b47f2795b061888d4f79b (patch) | |
| tree | de6360804cfdec65afcd11945db38051bd760817 /src/ui/dialog/template-widget.cpp | |
| parent | Replaced some abs/fabs with std::abs. (diff) | |
| download | inkscape-d7c36cd293ee35f53a5b47f2795b061888d4f79b.tar.gz inkscape-d7c36cd293ee35f53a5b47f2795b061888d4f79b.zip | |
Fixed some logic errors; clang warnings.
(bzr r13460)
Diffstat (limited to 'src/ui/dialog/template-widget.cpp')
| -rw-r--r-- | src/ui/dialog/template-widget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/template-widget.cpp b/src/ui/dialog/template-widget.cpp index ef91962d4..9758b35ac 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.empty()){ + 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 + " "; |
