diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-06-10 18:48:12 -0700 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-06-10 18:48:12 -0700 |
commit | 6be3dd5ea385e206182d660605a2745be12be3ea (patch) | |
tree | 7e2af6fb73a6ce4c36c74c45747b48e57f758d01 | |
parent | b38d18c626673c8504e703153beb0590cee0082d (diff) |
Remove wayland event dispatcher
Have to figure out how we want to do it...
-rw-r--r-- | src/gui/kernel/qapplication_wayland.cpp | 6 |
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() |