author | llornkcor <llornkcor> | 2003-02-23 14:31:07 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2003-02-23 14:31:07 (UTC) |
commit | 135c6fb1d73d322b43c8a487d40675278f3bf5f5 (patch) (side-by-side diff) | |
tree | 43d007722409e3d3ff9111ab95acd79464e37bee | |
parent | a566d1696216eead6a3e4ed8274ca6c04e296165 (diff) | |
download | opie-135c6fb1d73d322b43c8a487d40675278f3bf5f5.zip opie-135c6fb1d73d322b43c8a487d40675278f3bf5f5.tar.gz opie-135c6fb1d73d322b43c8a487d40675278f3bf5f5.tar.bz2 |
remove bogus include
3 files changed, 0 insertions, 3 deletions
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerplugin.h b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerplugin.h index 7e7698f..e88c687 100644 --- a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerplugin.h +++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerplugin.h @@ -1,47 +1,46 @@ /* * stocktickerplugin.h * * copyright : (c) 2002 by L.J. Potter * email : llornkcor@handhelds.org * */ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef STOCKTICKER_PLUGIN_H #define STOCKTICKER_PLUGIN_H #include <qstring.h> #include <qwidget.h> -#include <opie/tododb.h> #include <opie/oclickablelabel.h> #include <opie/todayplugininterface.h> #include <opie/todayconfigwidget.h> class StockTickerPlugin : public TodayPluginObject { public: StockTickerPlugin(); ~StockTickerPlugin(); QString pluginName() const; double versionNumber() const; QString pixmapNameWidget() const; QWidget* widget(QWidget *); QString pixmapNameConfig() const; TodayConfigWidget* configWidget(QWidget *); QString appName() const; bool excludeFromRefresh() const; }; #endif diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.h b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.h index 1189bf5..8a8fbf8 100644 --- a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.h +++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.h @@ -2,49 +2,48 @@ * stocktickerpluginwidget.h * * copyright : (c) 2002 by L.J. Potter * email : lornkcor@handhelds.org * */ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef STOCKTICKERL_PLUGIN_WIDGET_H #define STOCKTICKERL_PLUGIN_WIDGET_H #include <qsocket.h> #include <qstring.h> #include <qwidget.h> #include <qlineedit.h> -#include <opie/tododb.h> #include <opie/oclickablelabel.h> #include <opie/oticker.h> #include <sys/types.h> #include <sys/uio.h> #include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <string.h> class QTimer; class StockTickerPluginWidget : public QWidget { Q_OBJECT public: StockTickerPluginWidget( QWidget *parent, const char *name ); ~StockTickerPluginWidget(); protected slots: void doStocks(); void isConnected(); void socketError(int); diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktimerpluginwidget.h b/noncore/todayplugins/stockticker/stocktickerlib/stocktimerpluginwidget.h index 2feef80..d7b6047 100644 --- a/noncore/todayplugins/stockticker/stocktickerlib/stocktimerpluginwidget.h +++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktimerpluginwidget.h @@ -1,45 +1,44 @@ /* * mailpluginwidget.h * * copyright : (c) 2002 by Maximilian Reiß * email : harlekin@handhelds.org * */ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef MAIL_PLUGIN_WIDGET_H #define MAIL_PLUGIN_WIDGET_H #include <qstring.h> #include <qwidget.h> -#include <opie/tododb.h> #include <opie/oclickablelabel.h> class MailPluginWidget : public QWidget { Q_OBJECT public: MailPluginWidget( QWidget *parent, const char *name ); ~MailPluginWidget(); protected slots: void startMail(); private: OClickableLabel *mailLabel; void readConfig(); void getInfo(); }; #endif |