KWeather: Add current date to the log entries

This relates to bug 2728

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/1/head
Slávek Banko 8 years ago
parent eb7b432f04
commit 8aedce54f4

@ -29,6 +29,7 @@
#include <ksettings/dispatcher.h> #include <ksettings/dispatcher.h>
#include <dcopclient.h> #include <dcopclient.h>
#include <tqdatetime.h>
#include <tqfile.h> #include <tqfile.h>
#include <tqtimer.h> #include <tqtimer.h>
#include <tqpalette.h> #include <tqpalette.h>
@ -257,6 +258,7 @@ void kweather::writeLogEntry()
TQStringList weather = mWeatherService->weather(reportLocation ); TQStringList weather = mWeatherService->weather(reportLocation );
TQStringList cover = mWeatherService->cover(reportLocation ); TQStringList cover = mWeatherService->cover(reportLocation );
TQString visibility = mWeatherService->visibility(reportLocation ); TQString visibility = mWeatherService->visibility(reportLocation );
logFileStream << TDEGlobal::locale()->formatDateTime(TQDateTime::currentDateTime(), false, false) << ",";
logFileStream << date << ","; logFileStream << date << ",";
logFileStream << wind << ","; logFileStream << wind << ",";
logFileStream << temperature << ","; logFileStream << temperature << ",";
@ -343,7 +345,7 @@ void kweather::slotPrefsAccepted()
{ {
// Empty file, put the header // Empty file, put the header
TQTextStream logFileStream(&logFile); 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(); logFile.close();
} }

Loading…
Cancel
Save