-rw-r--r-- | core/pim/today/configwidget.h | 3 | ||||
-rw-r--r-- | core/pim/today/today.cpp | 4 | ||||
-rw-r--r-- | core/pim/today/today.pro | 2 | ||||
-rw-r--r-- | core/pim/today/todaybase.h | 17 |
4 files changed, 11 insertions, 15 deletions
diff --git a/core/pim/today/configwidget.h b/core/pim/today/configwidget.h index f3a83f9..f449db4 100644 --- a/core/pim/today/configwidget.h +++ b/core/pim/today/configwidget.h @@ -4,3 +4,2 @@ -#include <qwidget.h> @@ -8,3 +7,3 @@ class ConfigWidget : public QWidget { - Q_OBJECT + public: diff --git a/core/pim/today/today.cpp b/core/pim/today/today.cpp index 7decf8e..09540bd 100644 --- a/core/pim/today/today.cpp +++ b/core/pim/today/today.cpp @@ -120,3 +120,3 @@ void Today::init() { void Today::loadPlugins() { - qWarning("pluginList count %d", pluginList.count() ); + QValueList<TodayPlugin>::Iterator tit; @@ -126,3 +126,2 @@ void Today::loadPlugins() { } - pluginList.clear(); @@ -161,3 +160,2 @@ void Today::loadPlugins() { } - qWarning("pluginList count end %d", pluginList.count() ); } diff --git a/core/pim/today/today.pro b/core/pim/today/today.pro index 5328d9f..8596da3 100644 --- a/core/pim/today/today.pro +++ b/core/pim/today/today.pro @@ -3,3 +3,3 @@ CONFIG = qt warn_on debug #CONFIG = qt warn_on release -HEADERS = today.h todaybase.h todayconfig.h configwidget.h +HEADERS = today.h todaybase.h todayconfig.h SOURCES = main.cpp today.cpp todaybase.cpp todayconfig.cpp diff --git a/core/pim/today/todaybase.h b/core/pim/today/todaybase.h index 0e53510..7c50f32 100644 --- a/core/pim/today/todaybase.h +++ b/core/pim/today/todaybase.h @@ -20,3 +20,2 @@ #include <qlayout.h> -#include <qguardedptr.h> #include <opie/oclickablelabel.h> @@ -39,10 +38,10 @@ public: - QGuardedPtr<QFrame> Frame4; - QGuardedPtr<QPushButton> DatesButton; - QGuardedPtr<QVBoxLayout> layout; - QGuardedPtr<OClickableLabel> OwnerField; - QGuardedPtr<QLabel> Frame; - QGuardedPtr<QLabel> DateLabel; - QGuardedPtr<QFrame> Frame15; - QGuardedPtr<OClickableLabel> ConfigButton; + QFrame* Frame4; + QPushButton* DatesButton; + QVBoxLayout* layout; + OClickableLabel* OwnerField; + QLabel* Frame; + QLabel* DateLabel; + QFrame* Frame15; + OClickableLabel* ConfigButton; |