diff options
-rw-r--r-- | qt-ui/btdeviceselectiondialog.cpp | 7 | ||||
-rw-r--r-- | qt-ui/btdeviceselectiondialog.h | 7 |
2 files changed, 7 insertions, 7 deletions
diff --git a/qt-ui/btdeviceselectiondialog.cpp b/qt-ui/btdeviceselectiondialog.cpp index 2fa8ef167..fb2cbc1f3 100644 --- a/qt-ui/btdeviceselectiondialog.cpp +++ b/qt-ui/btdeviceselectiondialog.cpp @@ -6,6 +6,13 @@ #include "ui_btdeviceselectiondialog.h" #include "btdeviceselectiondialog.h" +#if defined(Q_OS_WIN) +Q_DECLARE_METATYPE(QBluetoothDeviceDiscoveryAgent::Error) +#endif +#if QT_VERSION < 0x050500 +Q_DECLARE_METATYPE(QBluetoothDeviceInfo) +#endif + BtDeviceSelectionDialog::BtDeviceSelectionDialog(QWidget *parent) : QDialog(parent), ui(new Ui::BtDeviceSelectionDialog), diff --git a/qt-ui/btdeviceselectiondialog.h b/qt-ui/btdeviceselectiondialog.h index a99afb80a..7651f164b 100644 --- a/qt-ui/btdeviceselectiondialog.h +++ b/qt-ui/btdeviceselectiondialog.h @@ -22,13 +22,6 @@ #undef DC_VERSION // this is already declared in libdivecomputer header #endif -#if defined(Q_OS_WIN) -Q_DECLARE_METATYPE(QBluetoothDeviceInfo) -Q_DECLARE_METATYPE(QBluetoothDeviceDiscoveryAgent::Error) -#elif QT_VERSION < 0x050500 -Q_DECLARE_METATYPE(QBluetoothDeviceInfo) -#endif - namespace Ui { class BtDeviceSelectionDialog; } |