diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-10-26 06:05:27 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-10-26 06:51:47 -0700 |
commit | 3b0f38f24a3c3d7ccadf8c0b0011dfc58c2f9d46 (patch) | |
tree | ef71eedd9499b3441da39ff5d0516c76f76bb7f4 /qt-ui/configuredivecomputerdialog.cpp | |
parent | 1d10a56bdf6823e8935729aef60b659dea550a6a (diff) | |
download | subsurface-3b0f38f24a3c3d7ccadf8c0b0011dfc58c2f9d46.tar.gz |
Fix building without BT support
I guess no one had tried this in a while.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/configuredivecomputerdialog.cpp')
-rw-r--r-- | qt-ui/configuredivecomputerdialog.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/qt-ui/configuredivecomputerdialog.cpp b/qt-ui/configuredivecomputerdialog.cpp index 7afb3f4bd..ddb9450de 100644 --- a/qt-ui/configuredivecomputerdialog.cpp +++ b/qt-ui/configuredivecomputerdialog.cpp @@ -115,8 +115,12 @@ void GasTypeComboBoxItemDelegate::setModelData(QWidget *editor, QAbstractItemMod ConfigureDiveComputerDialog::ConfigureDiveComputerDialog(QWidget *parent) : QDialog(parent), config(0), +#ifdef BT_SUPPORT deviceDetails(0), btDeviceSelectionDialog(0) +#else + deviceDetails(0) +#endif { ui.setupUi(this); @@ -134,7 +138,7 @@ ConfigureDiveComputerDialog::ConfigureDiveComputerDialog(QWidget *parent) : QDia connect(ui.logToFile, SIGNAL(stateChanged(int)), this, SLOT(checkLogFile(int))); connect(ui.connectButton, SIGNAL(clicked()), this, SLOT(dc_open())); connect(ui.disconnectButton, SIGNAL(clicked()), this, SLOT(dc_close())); -#if BT_SUPPORT +#ifdef BT_SUPPORT connect(ui.bluetoothMode, SIGNAL(clicked(bool)), this, SLOT(selectRemoteBluetoothDevice())); #else ui.bluetoothMode->setVisible(false); |