From 23c175f6b91cfe1a21c7218b27901a600aa5af86 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 16 Nov 2024 13:16:51 -0500 Subject: Use a consistent naming scheme for class members in Qt frontend --- src/jalv_qt.hpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'src/jalv_qt.hpp') diff --git a/src/jalv_qt.hpp b/src/jalv_qt.hpp index e6b1f35..10c26fe 100644 --- a/src/jalv_qt.hpp +++ b/src/jalv_qt.hpp @@ -62,19 +62,19 @@ private: float getValue(); int stringWidth(const QString& str); - QDial* dial; - const LilvPlugin* plugin; - JalvPort* port; - - QLabel* label; - QString name; - int steps; - float max{1.0f}; - float min{0.0f}; - bool isInteger{}; - bool isEnum{}; - bool isLogarithmic{}; - - std::vector scalePoints; - std::map scaleMap; + QDial* _dial; + const LilvPlugin* _plugin; + JalvPort* _port; + + QLabel* _label; + QString _name; + int _steps; + float _max{1.0f}; + float _min{0.0f}; + bool _isInteger{}; + bool _isEnum{}; + bool _isLogarithmic{}; + + std::vector _scalePoints; + std::map _scaleMap; }; -- cgit v1.2.1