diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2018-11-26 09:06:27 +0000 |
|---|---|---|
| committer | Tavmjong Bah <tavmjong@free.fr> | 2018-11-26 09:06:27 +0000 |
| commit | c2c56a10e1caac6d569dc9ac9c63a9c1953021b8 (patch) | |
| tree | 7557a21d42aba3df88db06d06f3e70dbf551b554 /src/actions | |
| parent | Add "select" action for backwards compatibility. Fix typo for "select-via-cla... (diff) | |
| download | inkscape-c2c56a10e1caac6d569dc9ac9c63a9c1953021b8.tar.gz inkscape-c2c56a10e1caac6d569dc9ac9c63a9c1953021b8.zip | |
Fix a couple typos. Change separator for --verb from ',' to ';' to be constent with --actions.
Diffstat (limited to 'src/actions')
| -rw-r--r-- | src/actions/actions-base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/actions/actions-base.cpp b/src/actions/actions-base.cpp index 9ce38da4b..b24602ca7 100644 --- a/src/actions/actions-base.cpp +++ b/src/actions/actions-base.cpp @@ -174,7 +174,7 @@ no_convert_baseline() void verbs(Glib::ustring verblist, InkscapeApplication* app) { - auto tokens = Glib::Regex::split_simple("\\s*,\\s*", verblist); + auto tokens = Glib::Regex::split_simple("\\s*;\\s*", verblist); for (auto token : tokens) { std::vector<Glib::ustring> parts = Glib::Regex::split_simple("\\s*:\\s*", token); // Second part is always ignored... we could implement it but better to switch to Gio::Actions if (!parts[0].empty()) { |
