File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Sources/SwiftWin32/Menus and Shortcuts Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
// SPDX-License-Identifier: BSD-3-Clause
3
3
4
4
/// An object representing a main or contextual menu system.
5
- public class MenuSystem {
5
+ open class MenuSystem {
6
6
// MARK - Getting a Menu System
7
7
8
8
/// The main menu system.
9
- public class var main : MenuSystem {
9
+ open class var main : MenuSystem {
10
10
fatalError ( " \( #function) not yet implemented " )
11
11
}
12
12
13
13
/// The context menu system.
14
- public class var context : MenuSystem {
14
+ open class var context : MenuSystem {
15
15
fatalError ( " \( #function) not yet implemented " )
16
16
}
17
17
18
18
// MARK - Rebuilding a Menu System
19
19
20
20
/// Tells the menu system to rebuild all of its menus.
21
- public func setNeedsRebuild( ) {
21
+ open func setNeedsRebuild( ) {
22
22
}
23
23
24
24
// MARK - Revalidating a Menu System
25
25
26
26
/// Tells the menu system to validate all of its menus.
27
- public func setNeedsRevalidate( ) {
27
+ open func setNeedsRevalidate( ) {
28
28
}
29
29
}
You can’t perform that action at this time.
0 commit comments