diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2018-07-02 08:20:47 +0200 | 
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-07-02 09:34:17 +0200 | 
| commit | f2faf7acf4445fef2a149ebbdecb569a2d119d94 (patch) | |
| tree | 6629ba211a70a54a0ab82f6c4f4de08504072951 /tracker-hatire | |
| parent | 66e75860d0c54baa39ed789442b09b96eeebe2e6 (diff) | |
nothing important
Diffstat (limited to 'tracker-hatire')
| -rw-r--r-- | tracker-hatire/thread.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/tracker-hatire/thread.cpp b/tracker-hatire/thread.cpp index 6025d74c..07e97d78 100644 --- a/tracker-hatire/thread.cpp +++ b/tracker-hatire/thread.cpp @@ -25,7 +25,7 @@ void hatire_thread::sendcmd_impl(const QByteArray &cmd)              Log(logMess);              com_port.write(cmd);              if (!com_port.waitForBytesWritten(1000)) { -                emit serial_debug_info_str(tr("Timeout during writing command")); +                serial_debug_info_str(tr("Timeout during writing command"));              } else              {                  Msg.append("\r\n"); @@ -43,7 +43,7 @@ void hatire_thread::sendcmd_impl(const QByteArray &cmd)              emit serial_debug_info(Msg);  #endif          } else { -            emit serial_debug_info_str(tr("COM port not open")); +            serial_debug_info_str(tr("COM port not open"));          }      }  #endif @@ -146,7 +146,7 @@ void hatire_thread::run()  void hatire_thread::serial_debug_info_str(const QString& str)  { -    serial_debug_info(str.toUtf8()); +    emit serial_debug_info(str.toLatin1());  }  serial_result hatire_thread::init_serial_port_impl() | 
