diff options
| author | Martin Owens <doctormo@gmail.com> | 2013-09-20 04:45:16 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2013-09-20 04:45:16 +0000 |
| commit | eb3598e7e27619c759ef33bb9ec4ffb8898523de (patch) | |
| tree | 3793d7310b4cdea6ffaea3fe7ee837b3ede065cf /src/sp-line.cpp | |
| parent | Fix make check after merge of cppify branch (diff) | |
| download | inkscape-eb3598e7e27619c759ef33bb9ec4ffb8898523de.tar.gz inkscape-eb3598e7e27619c759ef33bb9ec4ffb8898523de.zip | |
Refactor status-bar text for multiple items, was very broken
Fixed bugs:
- https://launchpad.net/bugs/1199192
(bzr r12550)
Diffstat (limited to 'src/sp-line.cpp')
| -rw-r--r-- | src/sp-line.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp-line.cpp b/src/sp-line.cpp index 3963007de..c3a0b13db 100644 --- a/src/sp-line.cpp +++ b/src/sp-line.cpp @@ -122,8 +122,8 @@ Inkscape::XML::Node* SPLine::write(Inkscape::XML::Document *xml_doc, Inkscape::X return repr; } -gchar* SPLine::description() { - return g_strdup(_("<b>Line</b>")); +const char* SPLine::display_name() { + return _("Line"); } void SPLine::convert_to_guides() { |
