summaryrefslogtreecommitdiffstats
path: root/src/mixxxapplication.cpp
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2017-02-20 23:54:54 +0100
committerDaniel Schürmann <daschuer@mixxx.org>2017-02-20 23:54:54 +0100
commitdc74b02bc1982a921aa1e22b8f9fd9efba8490d5 (patch)
treeb0ca6847aa2aaa8302925aa99c25667aa01f9e5d /src/mixxxapplication.cpp
parent03618aeb028d58656b2de53ff54e7480e6cc15ac (diff)
remove debug messages
Diffstat (limited to 'src/mixxxapplication.cpp')
-rw-r--r--src/mixxxapplication.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mixxxapplication.cpp b/src/mixxxapplication.cpp
index 606daba40f..f8e9737456 100644
--- a/src/mixxxapplication.cpp
+++ b/src/mixxxapplication.cpp
@@ -88,10 +88,8 @@ bool MixxxApplication::notify(QObject* target, QEvent* event) {
switch (event->type()) {
case QEvent::TouchBegin:
// try to deliver as touch event
- qDebug() << "MixxxApplication" << QTime::currentTime().toString("ss:zzz") << "try" << event;
baseReturn = QApplication::notify(target, event);
if (dynamic_cast<MixxxMainWindow*>(touchEvent->widget())) {
- qDebug() << "MixxxApplication" << QTime::currentTime().toString("ss:zzz") << "reached MixxxMainWindow" << event;
// the touchEvent has fallen trough to the MixxxMainWindow, because there
// was no touch enabled widget found.
// Now we resent this event and all following events for this touch point
@@ -147,7 +145,6 @@ bool MixxxApplication::notify(QObject* target, QEvent* event) {
//if (m_fakeMouseWidget->focusPolicy() & Qt::ClickFocus) {
// fakeMouseWidget->setFocus();
//}
- qDebug() << "MixxxApplication" << QTime::currentTime().toString("ss:zzz") << "fake event";
QApplication::notify(fakeMouseWidget, &mouseEvent);
return true;
}
@@ -179,7 +176,6 @@ bool MixxxApplication::notify(QObject* target, QEvent* event) {
default:
break;
}
-
// No touch event
bool ret = QApplication::notify(target, event);
return ret;