diff options
| author | bulia byak <buliabyak@gmail.com> | 2007-03-01 16:23:52 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2007-03-01 16:23:52 +0000 |
| commit | 11db7bd33cafd46241a66766068ba2beab0e80aa (patch) | |
| tree | 456947e4821c4a999821e8f2ab96cff2a9e630af /src/verbs.cpp | |
| parent | add accessor for tip (description) (diff) | |
| download | inkscape-11db7bd33cafd46241a66766068ba2beab0e80aa.tar.gz inkscape-11db7bd33cafd46241a66766068ba2beab0e80aa.zip | |
when listing verbs, use description when available, remove superfluous quotes
(bzr r2488)
Diffstat (limited to 'src/verbs.cpp')
| -rw-r--r-- | src/verbs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp index 1627f42bf..25c805c3c 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -2415,7 +2415,7 @@ Verb::list (void) { continue; } - printf("\"%s\", \"%s\"\n", verb->get_id(), verb->get_name()); + printf("%s: %s\n", verb->get_id(), verb->get_tip()? verb->get_tip() : verb->get_name()); } return; |
