diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-07-02 13:58:03 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-07-02 13:58:03 -0700 |
commit | 6b08a6d42877f80912aebf74558a6a37c6fbabc4 (patch) | |
tree | 2f618608e37b085d6c5d1aa145139bd5dc2feab1 /qt-ui/profilegraphics.cpp | |
parent | be6e6638de10fd120a7adeb5d85121f41e99a9c9 (diff) | |
download | subsurface-6b08a6d42877f80912aebf74558a6a37c6fbabc4.tar.gz |
Silence some warnings
One of them actually looks like it was a bug...
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profilegraphics.cpp')
-rw-r--r-- | qt-ui/profilegraphics.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qt-ui/profilegraphics.cpp b/qt-ui/profilegraphics.cpp index f7a881bd2..7adabc6d3 100644 --- a/qt-ui/profilegraphics.cpp +++ b/qt-ui/profilegraphics.cpp @@ -28,7 +28,10 @@ #include <libdivecomputer/version.h> static struct graphics_context last_gc; + +#if PRINT_IMPLEMENTED static double plot_scale = SCALE_SCREEN; +#endif struct text_render_options{ double size; @@ -122,6 +125,7 @@ bool ProfileGraphicsView::eventFilter(QObject* obj, QEvent* event) return QGraphicsView::eventFilter(obj, event); } +#if PRINT_IMPLEMENTED static void plot_set_scale(scale_mode_t scale) { switch (scale) { @@ -134,6 +138,7 @@ static void plot_set_scale(scale_mode_t scale) break; } } +#endif void ProfileGraphicsView::showEvent(QShowEvent* event) { |