blob: 4665fc290ab540d73d9474f08c651760d1b34678 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/** @file
*
* This code was taken directly from:
* https://forum.qt.io/topic/82609/remove-native-mac-menu-items-such-as-show-tab-bar
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef COCOABRIDGE_H
#define COCOABRIDGE_H
class CocoaBridge
{
CocoaBridge() {}
public:
static void cleanOSGeneratedMenuItems();
};
#endif // COCOABRIDGE_H
|