summaryrefslogtreecommitdiff
path: root/core/pim/today/configwidget.h
authorzecke <zecke>2002-09-15 21:56:23 (UTC)
committer zecke <zecke>2002-09-15 21:56:23 (UTC)
commite288526f385ab520da2f625590d463d2bb1ff687 (patch) (unidiff)
tree9b6fe69cdac660e644f9264d550bcab5c57e84f7 /core/pim/today/configwidget.h
parent06dc621befb0dc8d0899a9cf80352ffc7fbb9443 (diff)
downloadopie-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
Diffstat (limited to 'core/pim/today/configwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/configwidget.h3
1 files changed, 2 insertions, 1 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
@@ -2,10 +2,11 @@
2#ifndef CONFIG_WIDGET_H 2#ifndef CONFIG_WIDGET_H
3#define CONFIG_WIDGET_H 3#define CONFIG_WIDGET_H
4 4
5#include <qwidget.h>
5 6
6 7
7class ConfigWidget : public QWidget { 8class ConfigWidget : public QWidget {
8 9 Q_OBJECT
9public: 10public:
10 11
11 ConfigWidget( QWidget *parent, const char *name ) : QWidget( parent, name ) {}; 12 ConfigWidget( QWidget *parent, const char *name ) : QWidget( parent, name ) {};