summaryrefslogtreecommitdiff
path: root/noncore/todayplugins
authordrw <drw>2002-11-22 01:48:26 (UTC)
committer drw <drw>2002-11-22 01:48:26 (UTC)
commit772c1321e4e95a415b9de700c3474f81f98b5482 (patch) (side-by-side diff)
treee220beb65ea90ae7aee52c0ac83ecbc69bd8191a /noncore/todayplugins
parent87240f18c4e7b12c56d7f61a3431221d94f59f4c (diff)
downloadopie-772c1321e4e95a415b9de700c3474f81f98b5482.zip
opie-772c1321e4e95a415b9de700c3474f81f98b5482.tar.gz
opie-772c1321e4e95a415b9de700c3474f81f98b5482.tar.bz2
Make sure update frequency is initialized 1st time in (thanks to Simon)
Diffstat (limited to 'noncore/todayplugins') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/todayplugins/weather/weatherpluginwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/todayplugins/weather/weatherpluginwidget.cpp b/noncore/todayplugins/weather/weatherpluginwidget.cpp
index 6444ebf..f4ea0f2 100644
--- a/noncore/todayplugins/weather/weatherpluginwidget.cpp
+++ b/noncore/todayplugins/weather/weatherpluginwidget.cpp
@@ -79,14 +79,14 @@ void WeatherPluginWidget::timerEvent( QTimerEvent *e )
void WeatherPluginWidget::retreiveData()
{
- startTimer( frequency * 60000 );
-
Config config( "todayweatherplugin");
config.setGroup( "Config" );
location = config.readEntry( "Location", "" );
useMetric = config.readBoolEntry( "Metric", TRUE );
frequency = config.readNumEntry( "Frequency", 5 );
+
+ startTimer( frequency * 60000 );
localFile = "/tmp/";
localFile.append( location );