summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qapplication.cpp
diff options
context:
space:
mode:
authorJørgen Lind <jorgen.lind@nokia.com>2010-06-24 12:41:17 (GMT)
committerJørgen Lind <jorgen.lind@nokia.com>2010-06-24 12:47:31 (GMT)
commit13cc79de7b96cfe367869a748d07d502997d0342 (patch)
treeaead51fb365f939d06b78dc6366f124c86cbb4af /src/gui/kernel/qapplication.cpp
parent1e88fd57c693db1e4b6f0c42a2c05fad935fb4b9 (diff)
downloadQt-13cc79de7b96cfe367869a748d07d502997d0342.zip
Qt-13cc79de7b96cfe367869a748d07d502997d0342.tar.gz
Qt-13cc79de7b96cfe367869a748d07d502997d0342.tar.bz2
Refactored classes and functions using lite
Diffstat (limited to 'src/gui/kernel/qapplication.cpp')
-rw-r--r--src/gui/kernel/qapplication.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/gui/kernel/qapplication.cpp b/src/gui/kernel/qapplication.cpp
index b3e6fcd..e1ed588 100644
--- a/src/gui/kernel/qapplication.cpp
+++ b/src/gui/kernel/qapplication.cpp
@@ -927,8 +927,7 @@ void QApplicationPrivate::initialize()
// initialize the graphics system - on X11 this is initialized inside
// qt_init() in qapplication_x11.cpp because of several reasons.
// On QWS, the graphics system is set by the QScreen plugin.
- // For lighthouse it will be initialized to QLiteGraphicsSystem
- // when the platformIntegration plugin is instansiated in qt_init(
+ // We don't use graphics systems in Qt QPA
graphics_system = QGraphicsSystemFactory::create(graphics_system_name);
#endif
@@ -2763,9 +2762,9 @@ void QApplicationPrivate::dispatchEnterLeave(QWidget* enter, QWidget* leave) {
qt_x11_enforce_cursor(parentOfLeavingCursor,true);
#elif defined(Q_WS_QPA)
if (enter == QApplication::desktop()) {
- qt_lite_set_cursor(enter, true);
+ qt_qpa_set_cursor(enter, true);
} else {
- qt_lite_set_cursor(parentOfLeavingCursor, true);
+ qt_qpa_set_cursor(parentOfLeavingCursor, true);
}
#endif
}
@@ -2792,7 +2791,7 @@ void QApplicationPrivate::dispatchEnterLeave(QWidget* enter, QWidget* leave) {
#elif defined(Q_WS_S60)
qt_symbian_set_cursor(cursorWidget, true);
#elif defined(Q_WS_QPA)
- qt_lite_set_cursor(cursorWidget, true);
+ qt_qpa_set_cursor(cursorWidget, true);
#endif
}
}