summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/linuxfb/qlinuxfbscreen.h
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@digia.com>2013-10-15 12:55:11 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-15 13:17:48 +0200
commit52c8d9ffbabc05c8f6cd7d2a21c109afb6aae8d1 (patch)
tree98866267e4d68f3ee3852e96df4c5eb21d9d7ec1 /src/plugins/platforms/linuxfb/qlinuxfbscreen.h
parent0008a6f4000674020db96ff4475094d049d094f6 (diff)
linuxfb: Adapt to initialize() pattern
Migrate to the new 5.2 pattern: Prevent relying on the event dispatcher in the constructor by performing initialization later in initialize() instead. Change-Id: Ifa6024affc35e995d6e33a63fa813da9df0c491b Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@digia.com>
Diffstat (limited to 'src/plugins/platforms/linuxfb/qlinuxfbscreen.h')
-rw-r--r--src/plugins/platforms/linuxfb/qlinuxfbscreen.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/platforms/linuxfb/qlinuxfbscreen.h b/src/plugins/platforms/linuxfb/qlinuxfbscreen.h
index d34104c6e1..32cd263063 100644
--- a/src/plugins/platforms/linuxfb/qlinuxfbscreen.h
+++ b/src/plugins/platforms/linuxfb/qlinuxfbscreen.h
@@ -53,15 +53,16 @@ class QLinuxFbScreen : public QFbScreen
{
Q_OBJECT
public:
- QLinuxFbScreen();
+ QLinuxFbScreen(const QStringList &args);
~QLinuxFbScreen();
- bool initialize(const QStringList &args);
+ bool initialize();
public slots:
QRegion doRedraw();
private:
+ QStringList mArgs;
int mFbFd;
int mTtyFd;