summaryrefslogtreecommitdiffstats
path: root/src/ui/interface.cpp
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2015-09-16 18:22:07 +0000
committerMarc Jeanmougin <marcjeanmougin@free.fr>2015-09-16 18:22:07 +0000
commitcde4201fc0a5eed704bf7374300132e5ab9a0476 (patch)
tree32f06e82ccbf7e75a752c685f4538a628682a236 /src/ui/interface.cpp
parentextensions. generate_voronoi.py. allow for translation of parent layer, and s... (diff)
downloadinkscape-cde4201fc0a5eed704bf7374300132e5ab9a0476.tar.gz
inkscape-cde4201fc0a5eed704bf7374300132e5ab9a0476.zip
fix for recent merge of ~mapreri/inkscape/typo
(cf discussion at https://code.launchpad.net/~mapreri/inkscape/typo/+merge/270993 ) (bzr r14370)
Diffstat (limited to 'src/ui/interface.cpp')
-rw-r--r--src/ui/interface.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ui/interface.cpp b/src/ui/interface.cpp
index d8dbd9452..9a4e1d773 100644
--- a/src/ui/interface.cpp
+++ b/src/ui/interface.cpp
@@ -868,11 +868,7 @@ static void sp_ui_build_dyn_menus(Inkscape::XML::Node *menus, GtkWidget *menu, I
}
continue;
}
- if (!strcmp(menu_pntr->name(), "separator")
- // This was spelt wrong in the original version
- // and so this is for backward compatibility. It can
- // probably be dropped after the 0.44 release.
- || !strcmp(menu_pntr->name(), "separator")) {
+ if (!strcmp(menu_pntr->name(), "separator")) {
GtkWidget *item = gtk_separator_menu_item_new();
gtk_widget_show(item);
gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);