-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() { layout->addWidget( stocktickerTicker); +// Config cfg( "stockticker"); +// cfg.setGroup("Timer"); +// timerDelay= cfg.readNumEntry("Delay",0); +// if(timerDelay > 0 ) +// startTimer(timerDelay*60000); +// qDebug("timer ^ set for %d",(timerDelay*60000)/60000); - Config cfg( "stockticker"); - cfg.setGroup("Timer"); - timerDelay= cfg.readNumEntry("Delay",0); - if(timerDelay > 0) - startTimer(timerDelay*60000); - } @@ -66,4 +66,4 @@ void StockTickerPluginWidget::init() { void StockTickerPluginWidget::doStocks() { - Config cfg( "stockticker"); + cfg.setGroup( "Symbols" ); @@ -250,7 +250,11 @@ void StockTickerPluginWidget::DefProxy(void) { void StockTickerPluginWidget::timerEvent( QTimerEvent *e ) { - qDebug("timer"); killTimer(e->timerId()); doStocks(); + Config cfg( "stockticker"); + cfg.setGroup("Timer"); + timerDelay= cfg.readNumEntry("Delay",0); if(timerDelay > 0) startTimer(timerDelay*60000); + qDebug("timer set for %d",(timerDelay*60000)/60000); + } |