From 43ab5bdc5f8b709bc278611a5f6924d6b0aaf1cd Mon Sep 17 00:00:00 2001 From: David Hallas Date: Wed, 18 Jul 2018 23:20:04 +0200 Subject: [PATCH] Removes unused member variables Summary: The InformationPanel::m_pendingPreview and ApplyViewPropsJob::m_currentItem member variables are not used and can therefore be removed. Reviewers: broulik, elvisangelaccio Reviewed By: broulik, elvisangelaccio Subscribers: kfm-devel Tags: #dolphin Differential Revision: https://phabricator.kde.org/D14180 --- src/panels/information/informationpanel.h | 1 - src/settings/applyviewpropsjob.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/panels/information/informationpanel.h b/src/panels/information/informationpanel.h index 6bb5862d6..1eea8fcd2 100644 --- a/src/panels/information/informationpanel.h +++ b/src/panels/information/informationpanel.h @@ -132,7 +132,6 @@ private: private: bool m_initialized; - bool m_pendingPreview; QTimer* m_infoTimer; QTimer* m_urlChangedTimer; QTimer* m_resetUrlTimer; diff --git a/src/settings/applyviewpropsjob.h b/src/settings/applyviewpropsjob.h index c41f30965..5c38c1667 100644 --- a/src/settings/applyviewpropsjob.h +++ b/src/settings/applyviewpropsjob.h @@ -70,7 +70,6 @@ private slots: private: ViewProperties* m_viewProps; - int m_currentItem; int m_progress; QUrl m_dir; };