mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 10:21:21 +00:00
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)
This commit is contained in:
parent
ae8c255eb0
commit
643aa795d6
1 changed files with 19 additions and 0 deletions
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue