diff options
author | Tim Wootton <tim@tee-jay.demon.co.uk> | 2014-05-30 23:46:55 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-01 20:20:17 -0700 |
commit | d825d689dd610b4e85f5a7b454927c6f4f3e2e4e (patch) | |
tree | 9a6a966dc5ba1078f0dc69163daba2e002c311f5 /qt-ui/simplewidgets.h | |
parent | 89f35321452925182594304961193a8091368ff7 (diff) | |
download | subsurface-d825d689dd610b4e85f5a7b454927c6f4f3e2e4e.tar.gz |
Override the MinMaxAvgWidget tool tips for the depth instance.
Add new methods to the MinMaxAvgWidget class to allow us to override the
default tooltips of its min and max icons, and then uses these methods to
make the tooltips for the Stats tab Depth instance more descriptive.
See #521
Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/simplewidgets.h')
-rw-r--r-- | qt-ui/simplewidgets.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/simplewidgets.h b/qt-ui/simplewidgets.h index cecb52815..c7d18bb35 100644 --- a/qt-ui/simplewidgets.h +++ b/qt-ui/simplewidgets.h @@ -30,6 +30,8 @@ public: void setMinimum(const QString &minimum); void setMaximum(const QString &maximum); void setAverage(const QString &average); + void overrideMinToolTipText(const QString &newTip); + void overrideMaxToolTipText(const QString &newTip); void clear(); private: |