summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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();
}