summaryrefslogtreecommitdiff
path: root/Tools/QtTestBrowser
diff options
context:
space:
mode:
authorKonstantin Tokarev <annulen@yandex.ru>2016-06-11 21:41:18 +0300
committerKonstantin Tokarev <annulen@yandex.ru>2016-06-15 09:42:28 +0000
commit68edaccf80ec8fea4fb841a1ca0d2ecc0e388aee (patch)
tree47357880b3cf3b549aa0bbfc97e596da08d5f204 /Tools/QtTestBrowser
parent28077218067438fef5cdc746feb45ca6d4e755d9 (diff)
downloadqtwebkit-68edaccf80ec8fea4fb841a1ca0d2ecc0e388aee.tar.gz
Don't use deprecated version suffixes of QStyleOption* classes.
They are deprecated since Qt 5.0. Change-Id: Id6df1fa1eec1e1f6bee863d7c00f37a599dd49f3 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'Tools/QtTestBrowser')
-rw-r--r--Tools/QtTestBrowser/locationedit.cpp2
-rw-r--r--Tools/QtTestBrowser/locationedit.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Tools/QtTestBrowser/locationedit.cpp b/Tools/QtTestBrowser/locationedit.cpp
index 6489b2b2e..fd86650b5 100644
--- a/Tools/QtTestBrowser/locationedit.cpp
+++ b/Tools/QtTestBrowser/locationedit.cpp
@@ -80,7 +80,7 @@ void LocationEdit::resizeEvent(QResizeEvent*)
void LocationEdit::updateInternalGeometry()
{
- QStyleOptionFrameV3 styleOption;
+ QStyleOptionFrame styleOption;
initStyleOption(&styleOption);
QRect textRect = style()->subElementRect(QStyle::SE_LineEditContents, &styleOption, this);
diff --git a/Tools/QtTestBrowser/locationedit.h b/Tools/QtTestBrowser/locationedit.h
index dae069d7b..85a7eb763 100644
--- a/Tools/QtTestBrowser/locationedit.h
+++ b/Tools/QtTestBrowser/locationedit.h
@@ -33,7 +33,7 @@
#include <QIcon>
#include <QLabel>
#include <QLineEdit>
-#include <QStyleOptionFrameV3>
+#include <QStyleOptionFrame>
#include <QTimer>
class LocationEdit : public QLineEdit {