summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2010-06-10 18:48:12 -0700
committerJesse Barnes <jbarnes@virtuousgeek.org>2010-06-10 18:48:12 -0700
commit6be3dd5ea385e206182d660605a2745be12be3ea (patch)
tree7e2af6fb73a6ce4c36c74c45747b48e57f758d01
parentb38d18c626673c8504e703153beb0590cee0082d (diff)
Remove wayland event dispatcher
Have to figure out how we want to do it...
-rw-r--r--src/gui/kernel/qapplication_wayland.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/kernel/qapplication_wayland.cpp b/src/gui/kernel/qapplication_wayland.cpp
index de57aa5b43..32f8bb6a52 100644
--- a/src/gui/kernel/qapplication_wayland.cpp
+++ b/src/gui/kernel/qapplication_wayland.cpp
@@ -104,14 +104,16 @@ Q_GUI_EXPORT QWaylandData *qWayland = 0;
void QApplicationPrivate::createEventDispatcher()
{
+#if 0
Q_Q(QApplication);
if (!QEventDispatcherGlib::versionSupported())
qFatal("glib version not supported\n");
eventDispatcher = (q->type() != QApplication::Tty
- ? new QGuiEventDispatcherGlib(q)
- : new QEventDispatcherGlib(q));
+ ? new QEventDispatcherWayland(q) :
+ new QEventDispatcherGlib(q))
+#endif
}
void QApplicationPrivate::initializeWidgetPaletteHash()