summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDaniel Poelzleithner <git@poelzi.org>2020-12-07 13:04:32 +0100
committerDaniel Poelzleithner <git@poelzi.org>2020-12-07 13:04:32 +0100
commit655ee132358dfeee832da97e2c5b7287cc282e88 (patch)
tree40fe36b5f42c5425a2639fca39158ceb0f13d721 /src
parente77124c39828cbc120f6bf566db084869a04b42d (diff)
remove unused privates
Diffstat (limited to 'src')
-rw-r--r--src/widget/wslidercomposed.cpp1
-rw-r--r--src/widget/wslidercomposed.h2
-rw-r--r--src/widget/wspinny.cpp1
-rw-r--r--src/widget/wspinny.h1
4 files changed, 0 insertions, 5 deletions
diff --git a/src/widget/wslidercomposed.cpp b/src/widget/wslidercomposed.cpp
index d643119e96..186d8a3dd0 100644
--- a/src/widget/wslidercomposed.cpp
+++ b/src/widget/wslidercomposed.cpp
@@ -31,7 +31,6 @@
WSliderComposed::WSliderComposed(QWidget * parent)
: WWidget(parent),
- m_bRightButtonPressed(false),
m_dHandleLength(0.0),
m_dSliderLength(0.0),
m_bHorizontal(false),
diff --git a/src/widget/wslidercomposed.h b/src/widget/wslidercomposed.h
index df17823263..5324de6da1 100644
--- a/src/widget/wslidercomposed.h
+++ b/src/widget/wslidercomposed.h
@@ -74,8 +74,6 @@ class WSliderComposed : public WWidget {
double calculateHandleLength();
void unsetPixmaps();
- // True if right mouse button is pressed.
- bool m_bRightButtonPressed;
// Length of handle in pixels
double m_dHandleLength;
// Length of the slider in pixels.
diff --git a/src/widget/wspinny.cpp b/src/widget/wspinny.cpp
index 137b7e6f50..eb5fe93fcd 100644
--- a/src/widget/wspinny.cpp
+++ b/src/widget/wspinny.cpp
@@ -60,7 +60,6 @@ WSpinny::WSpinny(
m_iStartMouseY(-1),
m_iFullRotations(0),
m_dPrevTheta(0.),
- m_dTheta(0.),
m_dRotationsPerSecond(MIXXX_VINYL_SPEED_33_NUM / 60),
m_bClampFailedWarning(false),
m_bGhostPlayback(false),
diff --git a/src/widget/wspinny.h b/src/widget/wspinny.h
index 5f82d33002..3579e2a316 100644
--- a/src/widget/wspinny.h
+++ b/src/widget/wspinny.h
@@ -127,7 +127,6 @@ class WSpinny : public QGLWidget, public WBaseWidget, public VinylSignalQualityL
int m_iStartMouseY;
int m_iFullRotations;
double m_dPrevTheta;
- double m_dTheta;
// Speed of the vinyl rotation.
double m_dRotationsPerSecond;
bool m_bClampFailedWarning;