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/selection-describer.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 'src/selection-describer.cpp')
| -rw-r--r-- | src/selection-describer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selection-describer.cpp b/src/selection-describer.cpp index fc6cb7f91..96ef3d0d1 100644 --- a/src/selection-describer.cpp +++ b/src/selection-describer.cpp @@ -146,7 +146,7 @@ void SelectionDescriber::_updateMessageFromSelection(Inkscape::Selection *select if (layer == parent) in_phrase = g_strdup_printf(_(" in %s"), layer_name); else if (!layer) - in_phrase = g_strdup_printf(_(" hidden in definitions")); + in_phrase = g_strdup_printf("%s", _(" hidden in definitions")); else in_phrase = g_strdup_printf(_(" in group %s (%s)"), parent_name, layer_name); } else { |
