author | llornkcor <llornkcor> | 2002-11-01 17:40:40 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-11-01 17:40:40 (UTC) |
commit | 75909e820818cc792e42d9c68fd50d05151b311d (patch) (unidiff) | |
tree | c8b9b7e153db85785ad446bd8ae0f7b74a457f77 | |
parent | 47d6a3119a7b46d25ce35fb2abda9c2bf3fa3f69 (diff) | |
download | opie-75909e820818cc792e42d9c68fd50d05151b311d.zip opie-75909e820818cc792e42d9c68fd50d05151b311d.tar.gz opie-75909e820818cc792e42d9c68fd50d05151b311d.tar.bz2 |
another timer fix
-rw-r--r-- | noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp index cc1bbbb..a7f98be 100644 --- a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp +++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp | |||
@@ -56,9 +56,9 @@ void StockTickerPluginWidget::init() { | |||
56 | layout->addWidget( stocktickerTicker); | 56 | layout->addWidget( stocktickerTicker); |
57 | // Config cfg( "stockticker"); | ||
58 | // cfg.setGroup("Timer"); | ||
59 | // timerDelay= cfg.readNumEntry("Delay",0); | ||
60 | // if(timerDelay > 0 ) | ||
61 | // startTimer(timerDelay*60000); | ||
62 | // qDebug("timer ^ set for %d",(timerDelay*60000)/60000); | ||
57 | 63 | ||
58 | Config cfg( "stockticker"); | ||
59 | cfg.setGroup("Timer"); | ||
60 | timerDelay= cfg.readNumEntry("Delay",0); | ||
61 | if(timerDelay > 0) | ||
62 | startTimer(timerDelay*60000); | ||
63 | |||
64 | } | 64 | } |
@@ -66,4 +66,4 @@ void StockTickerPluginWidget::init() { | |||
66 | void StockTickerPluginWidget::doStocks() { | 66 | void StockTickerPluginWidget::doStocks() { |
67 | |||
68 | Config cfg( "stockticker"); | 67 | Config cfg( "stockticker"); |
68 | |||
69 | cfg.setGroup( "Symbols" ); | 69 | cfg.setGroup( "Symbols" ); |
@@ -250,7 +250,11 @@ void StockTickerPluginWidget::DefProxy(void) { | |||
250 | void StockTickerPluginWidget::timerEvent( QTimerEvent *e ) { | 250 | void StockTickerPluginWidget::timerEvent( QTimerEvent *e ) { |
251 | qDebug("timer"); | ||
252 | killTimer(e->timerId()); | 251 | killTimer(e->timerId()); |
253 | doStocks(); | 252 | doStocks(); |
253 | Config cfg( "stockticker"); | ||
254 | cfg.setGroup("Timer"); | ||
255 | timerDelay= cfg.readNumEntry("Delay",0); | ||
254 | if(timerDelay > 0) | 256 | if(timerDelay > 0) |
255 | startTimer(timerDelay*60000); | 257 | startTimer(timerDelay*60000); |
258 | qDebug("timer set for %d",(timerDelay*60000)/60000); | ||
259 | |||
256 | } | 260 | } |