From 39cd73baa920c49a53a22592efc5d52978e7a445 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=20Polykanine=20A=2EK=2EA=2E=20Menelion=20Elens=C3=BA?= =?UTF-8?q?l=C3=AB?= Date: Wed, 21 Feb 2018 00:32:41 +0200 Subject: [PATCH] Fixed spelling: It should be separator --- minigui.d | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/minigui.d b/minigui.d index 813e6e2..e87b498 100644 --- a/minigui.d +++ b/minigui.d @@ -3689,8 +3689,8 @@ class MainWindow : Window { void New() {} void Open() {} void Save() {} - @seperator - void eXit() @accelerator("Alt+F4") { + @separator + void Exit() @accelerator("Alt+F4") { window.close(); } } @@ -3699,7 +3699,7 @@ class MainWindow : Window { void Undo() { undo(); } - @seperator + @separator void Cut() {} void Copy() {} void Paste() {} @@ -3733,7 +3733,7 @@ class MainWindow : Window { static if(__traits(compiles, triggering = &__traits(getMember, t, memberName))) { .menu menu; .toolbar toolbar; - bool seperator; + bool separator; .accelerator accelerator; .icon icon; string label; @@ -3742,8 +3742,8 @@ class MainWindow : Window { menu = attr; else static if(is(typeof(attr) == .toolbar)) toolbar = attr; - else static if(is(attr == .seperator)) - seperator = true; + else static if(is(attr == .separator)) + separator = true; else static if(is(typeof(attr) == .accelerator)) accelerator = attr; else static if(is(typeof(attr) == .icon)) @@ -3776,7 +3776,7 @@ class MainWindow : Window { mcs[menu.name] = mc; } - if(seperator) + if(separator) mc.addSeparator(); mc.addItem(new MenuItem(action)); } @@ -6478,7 +6478,7 @@ http://msdn.microsoft.com/en-us/library/windows/desktop/bb760476%28v=vs.85%29.as // These are all for setMenuAndToolbarFromAnnotatedCode /// This item in the menu will be preceded by a separator line -struct seperator {} +struct separator {} /// Program-wide keyboard shortcut to trigger the action struct accelerator { string keyString; } /// tells which menu the action will be on