diff options
author | Niklas | 2011-10-25 18:59:12 +0200 |
---|---|---|
committer | Niklas | 2011-10-25 18:59:12 +0200 |
commit | 1c2ae111e627e7117d2275393a0b66d6024d986a (patch) | |
tree | d39410ee2886a77f81aa1bf06b235f4055cfcdb6 | |
parent | fixed some bugs. show log screen is now bigger and opens a scrollbar automati... (diff) | |
download | fbgui-1c2ae111e627e7117d2275393a0b66d6024d986a.tar.gz fbgui-1c2ae111e627e7117d2275393a0b66d6024d986a.tar.xz fbgui-1c2ae111e627e7117d2275393a0b66d6024d986a.zip |
the log message has now a newline
-rw-r--r-- | src/networkdiscovery.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/networkdiscovery.cpp b/src/networkdiscovery.cpp index 716e28b..13242c2 100644 --- a/src/networkdiscovery.cpp +++ b/src/networkdiscovery.cpp @@ -247,7 +247,7 @@ QString NetworkDiscovery::getGatewayForInterface(QString ifName) { */ QString NetworkDiscovery::readLogFile() { // path to log file is in _pathToLogFile. initialized in initAndRun(). - QString retval("the log file"); + QString retval("the log file\n"); QFile logFile(_pathToLogFile); if (logFile.exists()) { if (logFile.open(QIODevice::ReadOnly | QIODevice::Text)) { |