summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2016-11-27 20:42:27 +0100
committerSlávek Banko <slavek.banko@axis.cz>2016-11-27 20:42:27 +0100
commit8aedce54f45a6debc32db7eb17f226bc695738a8 (patch)
tree829ed46962d8c9d921d9ec8e45e947ff8a63c47a
parenteb7b432f0481ab35b71014f30fa3290e3dd85131 (diff)
downloadtdetoys-8aedce54.tar.gz
tdetoys-8aedce54.zip
KWeather: Add current date to the log entries
This relates to bug 2728 Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--kweather/kweather.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/kweather/kweather.cpp b/kweather/kweather.cpp
index ab176f3..71fe647 100644
--- a/kweather/kweather.cpp
+++ b/kweather/kweather.cpp
@@ -29,6 +29,7 @@
#include <ksettings/dispatcher.h>
#include <dcopclient.h>
+#include <tqdatetime.h>
#include <tqfile.h>
#include <tqtimer.h>
#include <tqpalette.h>
@@ -257,6 +258,7 @@ void kweather::writeLogEntry()
TQStringList weather = mWeatherService->weather(reportLocation );
TQStringList cover = mWeatherService->cover(reportLocation );
TQString visibility = mWeatherService->visibility(reportLocation );
+ logFileStream << TDEGlobal::locale()->formatDateTime(TQDateTime::currentDateTime(), false, false) << ",";
logFileStream << date << ",";
logFileStream << wind << ",";
logFileStream << temperature << ",";
@@ -343,7 +345,7 @@ void kweather::slotPrefsAccepted()
{
// Empty file, put the header
TQTextStream logFileStream(&logFile);
- logFileStream << "Date,Wind Speed & Direction,Temperature,Pressure,Cover,Visibility,Current Weather" << endl;
+ logFileStream << "Date,Last Updated,Wind Speed & Direction,Temperature,Pressure,Cover,Visibility,Current Weather" << endl;
}
logFile.close();
}