diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2013-09-21 10:42:33 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2013-09-21 10:42:33 +0000 |
| commit | 0d4a38635fc26ed09d56b46e462b373489c8a4e2 (patch) | |
| tree | 511b4e86460db8180565d0949cd370608a22fa4b /src/tweak-context.cpp | |
| parent | Fixed CMake build. (diff) | |
| download | inkscape-0d4a38635fc26ed09d56b46e462b373489c8a4e2.tar.gz inkscape-0d4a38635fc26ed09d56b46e462b373489c8a4e2.zip | |
Fix format security errors
Fixed bugs:
- https://launchpad.net/bugs/1193025
(bzr r12563)
Diffstat (limited to '')
| -rw-r--r-- | src/tweak-context.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tweak-context.cpp b/src/tweak-context.cpp index 2171ecbe4..65106e651 100644 --- a/src/tweak-context.cpp +++ b/src/tweak-context.cpp @@ -168,7 +168,7 @@ void SPTweakContext::update_cursor (bool with_shift) { num = g_slist_length(const_cast<GSList *>(desktop->selection->itemList())); sel_message = g_strdup_printf(ngettext("<b>%i</b> object selected","<b>%i</b> objects selected",num), num); } else { - sel_message = g_strdup_printf(_("<b>Nothing</b> selected")); + sel_message = g_strdup_printf("%s", _("<b>Nothing</b> selected")); } switch (this->mode) { |
