author | zecke <zecke> | 2002-09-15 21:56:23 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-09-15 21:56:23 (UTC) |
commit | e288526f385ab520da2f625590d463d2bb1ff687 (patch) (unidiff) | |
tree | 9b6fe69cdac660e644f9264d550bcab5c57e84f7 | |
parent | 06dc621befb0dc8d0899a9cf80352ffc7fbb9443 (diff) | |
download | opie-e288526f385ab520da2f625590d463d2bb1ff687.zip opie-e288526f385ab520da2f625590d463d2bb1ff687.tar.gz opie-e288526f385ab520da2f625590d463d2bb1ff687.tar.bz2 |
Fix some runtime warnings
make configwidget.h include Q_OBJECT
add configwidget.h to the plugins
use QGuardedPtr inside TodayBase for better debugging
-rw-r--r-- | core/pim/today/configwidget.h | 3 | ||||
-rw-r--r-- | core/pim/today/plugins/datebook/datebook.pro | 2 | ||||
-rw-r--r-- | core/pim/today/plugins/todolist/todolist.pro | 2 | ||||
-rw-r--r-- | core/pim/today/today.pro | 2 | ||||
-rw-r--r-- | core/pim/today/todaybase.h | 17 |
5 files changed, 14 insertions, 12 deletions
diff --git a/core/pim/today/configwidget.h b/core/pim/today/configwidget.h index f449db4..f3a83f9 100644 --- a/core/pim/today/configwidget.h +++ b/core/pim/today/configwidget.h | |||
@@ -3,8 +3,9 @@ | |||
3 | #define CONFIG_WIDGET_H | 3 | #define CONFIG_WIDGET_H |
4 | 4 | ||
5 | #include <qwidget.h> | ||
5 | 6 | ||
6 | 7 | ||
7 | class ConfigWidget : public QWidget { | 8 | class ConfigWidget : public QWidget { |
8 | 9 | Q_OBJECT | |
9 | public: | 10 | public: |
10 | 11 | ||
diff --git a/core/pim/today/plugins/datebook/datebook.pro b/core/pim/today/plugins/datebook/datebook.pro index 615059a..7f5dfed 100644 --- a/core/pim/today/plugins/datebook/datebook.pro +++ b/core/pim/today/plugins/datebook/datebook.pro | |||
@@ -5,5 +5,5 @@ CONFIG += qt debug | |||
5 | # Input | 5 | # Input |
6 | HEADERS = datebookplugin.h datebookpluginimpl.h datebookpluginconfig.h \ | 6 | HEADERS = datebookplugin.h datebookpluginimpl.h datebookpluginconfig.h \ |
7 | datebookevent.h datebookpluginwidget.h | 7 | datebookevent.h datebookpluginwidget.h ../../configwidget.h |
8 | SOURCES = datebookplugin.cpp datebookpluginimpl.cpp datebookpluginconfig.cpp \ | 8 | SOURCES = datebookplugin.cpp datebookpluginimpl.cpp datebookpluginconfig.cpp \ |
9 | datebookevent.cpp datebookpluginwidget.cpp | 9 | datebookevent.cpp datebookpluginwidget.cpp |
diff --git a/core/pim/today/plugins/todolist/todolist.pro b/core/pim/today/plugins/todolist/todolist.pro index 1f9c61c..8162985 100644 --- a/core/pim/today/plugins/todolist/todolist.pro +++ b/core/pim/today/plugins/todolist/todolist.pro | |||
@@ -6,5 +6,5 @@ CONFIG += qt debug | |||
6 | # Input | 6 | # Input |
7 | HEADERS = todoplugin.h todopluginimpl.h todopluginconfig.h \ | 7 | HEADERS = todoplugin.h todopluginimpl.h todopluginconfig.h \ |
8 | todopluginwidget.h | 8 | todopluginwidget.h ../../configwidget.h |
9 | SOURCES = todoplugin.cpp todopluginimpl.cpp todopluginconfig.cpp \ | 9 | SOURCES = todoplugin.cpp todopluginimpl.cpp todopluginconfig.cpp \ |
10 | todopluginwidget.cpp | 10 | todopluginwidget.cpp |
diff --git a/core/pim/today/today.pro b/core/pim/today/today.pro index 8596da3..5328d9f 100644 --- a/core/pim/today/today.pro +++ b/core/pim/today/today.pro | |||
@@ -2,5 +2,5 @@ TEMPLATE = app | |||
2 | CONFIG = qt warn_on debug | 2 | CONFIG = qt warn_on debug |
3 | #CONFIG = qt warn_on release | 3 | #CONFIG = qt warn_on release |
4 | HEADERS = today.h todaybase.h todayconfig.h | 4 | HEADERS = today.h todaybase.h todayconfig.h configwidget.h |
5 | SOURCES = main.cpp today.cpp todaybase.cpp todayconfig.cpp | 5 | SOURCES = main.cpp today.cpp todaybase.cpp todayconfig.cpp |
6 | INCLUDEPATH+= $(OPIEDIR)/include | 6 | INCLUDEPATH+= $(OPIEDIR)/include |
diff --git a/core/pim/today/todaybase.h b/core/pim/today/todaybase.h index 7c50f32..0e53510 100644 --- a/core/pim/today/todaybase.h +++ b/core/pim/today/todaybase.h | |||
@@ -19,4 +19,5 @@ | |||
19 | 19 | ||
20 | #include <qlayout.h> | 20 | #include <qlayout.h> |
21 | #include <qguardedptr.h> | ||
21 | #include <opie/oclickablelabel.h> | 22 | #include <opie/oclickablelabel.h> |
22 | 23 | ||
@@ -37,12 +38,12 @@ public: | |||
37 | ~TodayBase(); | 38 | ~TodayBase(); |
38 | 39 | ||
39 | QFrame* Frame4; | 40 | QGuardedPtr<QFrame> Frame4; |
40 | QPushButton* DatesButton; | 41 | QGuardedPtr<QPushButton> DatesButton; |
41 | QVBoxLayout* layout; | 42 | QGuardedPtr<QVBoxLayout> layout; |
42 | OClickableLabel* OwnerField; | 43 | QGuardedPtr<OClickableLabel> OwnerField; |
43 | QLabel* Frame; | 44 | QGuardedPtr<QLabel> Frame; |
44 | QLabel* DateLabel; | 45 | QGuardedPtr<QLabel> DateLabel; |
45 | QFrame* Frame15; | 46 | QGuardedPtr<QFrame> Frame15; |
46 | OClickableLabel* ConfigButton; | 47 | QGuardedPtr<OClickableLabel> ConfigButton; |
47 | 48 | ||
48 | protected: | 49 | protected: |