Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
cocoa_bridge.h
1 /* cocoa_bridge.h
2  *
3  * This code was taken directly from:
4  * https://forum.qt.io/topic/82609/remove-native-mac-menu-items-such-as-show-tab-bar
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12 
13 #ifndef COCOABRIDGE_H
14 #define COCOABRIDGE_H
15 
17 {
18 
19  CocoaBridge() {}
20 
21 public:
22  static void cleanOSGeneratedMenuItems();
23 
24 };
25 
26 #endif // COCOABRIDGE_H
27 
28 /*
29  * Editor modelines
30  *
31  * Local Variables:
32  * c-basic-offset: 4
33  * tab-width: 8
34  * indent-tabs-mode: nil
35  * End:
36  *
37  * ex: set shiftwidth=4 tabstop=8 expandtab:
38  * :indentSize=4:tabSize=8:noTabs=true:
39  */
Definition: cocoa_bridge.h:16