diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-01-18 14:34:00 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-19 16:22:08 +1200 |
commit | 5a1be7620b4786d3522496e839bbdce5794f8ef9 (patch) | |
tree | 07f6d5197280e0aa680997cc5d1ad538d0771d47 /qt-ui/diveplanner.h | |
parent | f5726ffa9d21f80232b1206456eaf971468c4b2f (diff) | |
download | subsurface-5a1be7620b4786d3522496e839bbdce5794f8ef9.tar.gz |
Only update the "add dive profile / plan dive" 20x/s
We were updating the dive quite a lot of times, we really didn't need to.
This will help, but not fix, the issues with plan / add dive.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/diveplanner.h')
-rw-r--r-- | qt-ui/diveplanner.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/diveplanner.h b/qt-ui/diveplanner.h index e6ae8e8b5..4093bacd1 100644 --- a/qt-ui/diveplanner.h +++ b/qt-ui/diveplanner.h @@ -133,6 +133,8 @@ public slots: void selfRemove(); void changeGas(); +private: + QTime t; }; #include "ui_diveplanner.h" |