From 8350fb4a261dffaa08c8a32978dedd12b4a9f893 Mon Sep 17 00:00:00 2001 From: signedav Date: Thu, 8 Nov 2018 11:20:45 +0100 Subject: [PATCH] unused variable removed --- src/gui/qgsfilterlineedit.cpp | 1 - src/gui/qgsfilterlineedit.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/gui/qgsfilterlineedit.cpp b/src/gui/qgsfilterlineedit.cpp index a30e2ae95a2..a65b1d144c6 100644 --- a/src/gui/qgsfilterlineedit.cpp +++ b/src/gui/qgsfilterlineedit.cpp @@ -89,7 +89,6 @@ void QgsFilterLineEdit::focusInEvent( QFocusEvent *e ) QLineEdit::focusInEvent( e ); if ( e->reason() == Qt::MouseFocusReason && ( isNull() || mSelectOnFocus ) ) { - mFocusInEvent = true; mWaitingForMouseRelease = true; } } diff --git a/src/gui/qgsfilterlineedit.h b/src/gui/qgsfilterlineedit.h index 6cf22fcad3b..14a5a5efea8 100644 --- a/src/gui/qgsfilterlineedit.h +++ b/src/gui/qgsfilterlineedit.h @@ -286,7 +286,6 @@ class GUI_EXPORT QgsFilterLineEdit : public QLineEdit QString mNullValue; QString mDefaultValue; QString mStyleSheet; - bool mFocusInEvent = false; bool mWaitingForMouseRelease = false; bool mSelectOnFocus = false;