diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-06-24 15:18:23 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-06-24 15:47:22 +0200 |
commit | 70834c6959f21fcd327269b3cd1308cccd1c1bf6 (patch) | |
tree | fd6577f17f8def2df8900008a019a7f658374689 | |
parent | 8b9f88d4ed1482ed508826801e559962970dbc96 (diff) |
tracker/hatire: fix qt warning
-rw-r--r-- | tracker-hatire/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-hatire/thread.cpp b/tracker-hatire/thread.cpp index 4dc85370..764bd875 100644 --- a/tracker-hatire/thread.cpp +++ b/tracker-hatire/thread.cpp @@ -96,7 +96,7 @@ hatire_thread::hatire_thread() connect(this, &hatire_thread::sendcmd, this, &hatire_thread::sendcmd_impl, Qt::QueuedConnection); connect(this, &hatire_thread::sendcmd_str, this, &hatire_thread::sendcmd_str_impl, Qt::QueuedConnection); - com_port.moveToThread(this); + //com_port.moveToThread(this); #ifdef HATIRE_DEBUG_LOGFILE read_timer.moveToThread(this); #endif |