mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
bde7caa621
While investigating Qt 5.9.2 problems, I found this unused code. Just remove it. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
16 lines
252 B
C
16 lines
252 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef QT_GUI_H
|
|
#define QT_GUI_H
|
|
|
|
void init_qt_late();
|
|
void init_ui();
|
|
|
|
void run_ui();
|
|
void exit_ui();
|
|
void set_non_bt_addresses();
|
|
|
|
#if defined(SUBSURFACE_MOBILE)
|
|
#include <QQuickWindow>
|
|
#endif
|
|
|
|
#endif // QT_GUI_H
|