diff options
author | Jørgen Lind <jorgen.lind@nokia.com> | 2010-03-08 15:57:54 (GMT) |
---|---|---|
committer | Jørgen Lind <jorgen.lind@nokia.com> | 2010-03-08 16:09:39 (GMT) |
commit | b9f8c1491550fe671d1809481ad7f70737034a3b (patch) | |
tree | 0239848e17b0f7daf187f404fce4f8dfb7099733 /src/plugins/graphicssystems | |
parent | e6b9bc4c4269be040c947a464acf2b5c65ba38cd (diff) | |
download | Qt-b9f8c1491550fe671d1809481ad7f70737034a3b.zip Qt-b9f8c1491550fe671d1809481ad7f70737034a3b.tar.gz Qt-b9f8c1491550fe671d1809481ad7f70737034a3b.tar.bz2 |
LinuxFb: call initDevice
So you turn off the cursor blinking and remove redundant forward class
declaration
Diffstat (limited to 'src/plugins/graphicssystems')
-rw-r--r-- | src/plugins/graphicssystems/fb_base/fb_base.h | 1 | ||||
-rw-r--r-- | src/plugins/graphicssystems/linuxfb/qgraphicssystem_linuxfb.cpp | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/graphicssystems/fb_base/fb_base.h b/src/plugins/graphicssystems/fb_base/fb_base.h index 8b130d2..91b6d12 100644 --- a/src/plugins/graphicssystems/fb_base/fb_base.h +++ b/src/plugins/graphicssystems/fb_base/fb_base.h @@ -12,7 +12,6 @@ class QMouseEvent; class QSize; class QPainter; -class QGraphicsSystemFbWindowSurface; class QGraphicsSystemFbScreen; class QGraphicsSystemSoftwareCursor : public QGraphicsSystemCursor diff --git a/src/plugins/graphicssystems/linuxfb/qgraphicssystem_linuxfb.cpp b/src/plugins/graphicssystems/linuxfb/qgraphicssystem_linuxfb.cpp index f5ca6e7..a373ba8 100644 --- a/src/plugins/graphicssystems/linuxfb/qgraphicssystem_linuxfb.cpp +++ b/src/plugins/graphicssystems/linuxfb/qgraphicssystem_linuxfb.cpp @@ -164,6 +164,7 @@ QLinuxFbGraphicsSystem::QLinuxFbGraphicsSystem() if (!connect(displaySpec)) qFatal("QLinuxFbGraphicsSystem: could not initialize screen"); + initDevice(); // Create a QImage directly on the screen's framebuffer. // This is the blit target for copying windows to the screen. |