summaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/diveprofileitem.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2014-06-01 21:02:42 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-06-01 21:02:42 -0700
commit5bead467d7bf5d2249b3fc37647f8ff420d70792 (patch)
tree6d61bb165cf6bc8266ad74b0c007994731611c91 /qt-ui/profile/diveprofileitem.h
parentd740ad1317084ebc3ea9abfa66a1d18fed41d675 (diff)
downloadsubsurface-5bead467d7bf5d2249b3fc37647f8ff420d70792.tar.gz
Rename two C++ methods to the more typical CamelCase
Silly little change. Whatever. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/diveprofileitem.h')
-rw-r--r--qt-ui/profile/diveprofileitem.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/profile/diveprofileitem.h b/qt-ui/profile/diveprofileitem.h
index 92d48fe70..ddf8f5154 100644
--- a/qt-ui/profile/diveprofileitem.h
+++ b/qt-ui/profile/diveprofileitem.h
@@ -119,8 +119,8 @@ public:
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
private:
- void plot_pressure_value(int mbar, int sec, QFlags<Qt::AlignmentFlag> align);
- void plot_gas_value(int mbar, int sec, QFlags<Qt::AlignmentFlag> align, struct gasmix gasmix);
+ void plotPressureValue(int mbar, int sec, QFlags<Qt::AlignmentFlag> align);
+ void plotGasValue(int mbar, int sec, QFlags<Qt::AlignmentFlag> align, struct gasmix gasmix);
QVector<QPolygonF> polygons;
};