summaryrefslogtreecommitdiff
path: root/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp
Unidiff
Diffstat (limited to 'noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp20
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() {
66void StockTickerPluginWidget::doStocks() { 66void 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) {
250void StockTickerPluginWidget::timerEvent( QTimerEvent *e ) { 250void 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}