diff options
| author | 2021-08-16 18:15:54 -1000 | |
|---|---|---|
| committer | 2021-08-18 13:22:02 -0700 | |
| commit | ba6f7361da873609d72ab4ba3b1d55edd8f5569d (patch) | |
| tree | 09549d48064f9dc78ba70f6e28420b6ae661dddd /desktop-widgets/tab-widgets/TabDiveComputer.h | |
| parent | 6c4e890960036b127eab513ca967e9454bc63d54 (diff) | |
| download | subsurface-ba6f7361da873609d72ab4ba3b1d55edd8f5569d.tar.gz | |
Remove the divecomputer naming tab
The TabDiveComputer model won't work in the new world order, where you
can't even insert a new device entry without a nickname to be edited.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'desktop-widgets/tab-widgets/TabDiveComputer.h')
| -rw-r--r-- | desktop-widgets/tab-widgets/TabDiveComputer.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/desktop-widgets/tab-widgets/TabDiveComputer.h b/desktop-widgets/tab-widgets/TabDiveComputer.h deleted file mode 100644 index f5f6900c3..000000000 --- a/desktop-widgets/tab-widgets/TabDiveComputer.h +++ /dev/null @@ -1,23 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0 -#ifndef TAB_DIVE_COMPUTER_H -#define TAB_DIVE_COMPUTER_H - -#include "TabBase.h" -#include "ui_TabDiveComputer.h" - -class DiveComputerSortedModel; - -class TabDiveComputer : public TabBase { - Q_OBJECT -public: - TabDiveComputer(QWidget *parent = 0); - void updateData() override; - void clear() override; -public slots: - void tableClicked(const QModelIndex &index); -private: - Ui::TabDiveComputer ui; - DiveComputerSortedModel *sortedModel; -}; - -#endif |