From 643aa795d6ed7e0652bd5fbea1c762a929ef063e Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 7 Nov 2001 02:50:54 +0000 Subject: [PATCH] fill the bsb and brush menus with a "dunno" filler that just, er, selects "undo" for now. This is so Controller.m compiles on my system (using gcc 3) --- tools/Forge/Controller.m | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/tools/Forge/Controller.m b/tools/Forge/Controller.m index e7051c673..9576bf044 100644 --- a/tools/Forge/Controller.m +++ b/tools/Forge/Controller.m @@ -212,6 +212,25 @@ action: @selector (paste:) keyEquivalent: @"v"]; + /* + BSP + */ + bsp = [[[NSMenu alloc] init] autorelease]; + [menu setSubmenu: bsp forItem: [menu itemWithTitle: @"BSP"]]; + + [bsp addItemWithTitle: @"dunno" + action: @selector (undo:) + keyEquivalent: @"z"]; + /* + Brush + */ + brush = [[[NSMenu alloc] init] autorelease]; + [menu setSubmenu: brush forItem: [menu itemWithTitle: @"Brush"]]; + + [brush addItemWithTitle: @"dunno" + action: @selector (undo:) + keyEquivalent: @"z"]; + /* Windows */