summaryrefslogtreecommitdiff
path: root/noncore
authorllornkcor <llornkcor>2002-11-01 17:09:20 (UTC)
committer llornkcor <llornkcor>2002-11-01 17:09:20 (UTC)
commit47d6a3119a7b46d25ce35fb2abda9c2bf3fa3f69 (patch) (unidiff)
tree5218237e5668bac0e6c60f098f40d24e1784594d /noncore
parent800932401b86a43cd52f9cbc2833b2795d1c955b (diff)
downloadopie-47d6a3119a7b46d25ce35fb2abda9c2bf3fa3f69.zip
opie-47d6a3119a7b46d25ce35fb2abda9c2bf3fa3f69.tar.gz
opie-47d6a3119a7b46d25ce35fb2abda9c2bf3fa3f69.tar.bz2
fix
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp
index e178338..cc1bbbb 100644
--- a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp
+++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp
@@ -227,29 +227,30 @@ void StockTickerPluginWidget::getStocks( const char *blah) {
227} 227}
228 228
229void StockTickerPluginWidget::DefProxy(void) { 229void StockTickerPluginWidget::DefProxy(void) {
230 char *proxy; 230 char *proxy;
231 libstocks_return_code error; 231 libstocks_return_code error;
232 232
233 /* Proxy support */ 233 /* Proxy support */
234 /* Checks for "http_proxy" environment variable */ 234 /* Checks for "http_proxy" environment variable */
235 proxy = getenv("http_proxy"); 235 proxy = getenv("http_proxy");
236 if(proxy) { 236 if(proxy) {
237 /* printf("proxy set\n"); */ 237 /* printf("proxy set\n"); */
238 error = set_proxy(proxy); 238 error = set_proxy(proxy);
239 if (error) { 239 if (error) {
240// printf("Proxy error (%d)\n", error); 240// printf("Proxy error (%d)\n", error);
241 QString tempString; 241 QString tempString;
242 tempString.sprintf("Proxy error (%d)\n", error); 242 tempString.sprintf("Proxy error (%d)\n", error);
243 output = tempString; 243 output = tempString;
244 return; 244 return;
245// exit(1); 245// exit(1);
246 } 246 }
247 } 247 }
248} 248}
249 249
250void StockTickerPluginWidget::timerEvent( QTimerEvent *e ) { 250void StockTickerPluginWidget::timerEvent( QTimerEvent *e ) {
251 qDebug("timer");
251 killTimer(e->timerId()); 252 killTimer(e->timerId());
252 doStocks(); 253 doStocks();
253 if(timerDelay > 0) 254 if(timerDelay > 0)
254 startTimer(timerDelay*1000); 255 startTimer(timerDelay*60000);
255} 256}