summaryrefslogtreecommitdiff
path: root/core/pim
authorharlekin <harlekin>2003-02-10 23:54:03 (UTC)
committer harlekin <harlekin>2003-02-10 23:54:03 (UTC)
commit0af800b30845a0d3df8be9db5c11c06fd81386e7 (patch) (unidiff)
tree7424e11f69f362d3cede5909d654b555127b763c /core/pim
parent4abed72fea334ebfda6b146f70542dad522424b7 (diff)
downloadopie-0af800b30845a0d3df8be9db5c11c06fd81386e7.zip
opie-0af800b30845a0d3df8be9db5c11c06fd81386e7.tar.gz
opie-0af800b30845a0d3df8be9db5c11c06fd81386e7.tar.bz2
fix the -missing dtor leads to 12 kb memleak per cycle- bug
Diffstat (limited to 'core/pim') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/datebook/datebookevent.cpp4
-rw-r--r--core/pim/today/plugins/datebook/datebookevent.h24
2 files changed, 16 insertions, 12 deletions
diff --git a/core/pim/today/plugins/datebook/datebookevent.cpp b/core/pim/today/plugins/datebook/datebookevent.cpp
index 8277529..48f204e 100644
--- a/core/pim/today/plugins/datebook/datebookevent.cpp
+++ b/core/pim/today/plugins/datebook/datebookevent.cpp
@@ -35,3 +35,3 @@ DateBookEvent::DateBookEvent(const EffectiveEvent &ev,
35 35
36 setAlignment( AlignTop ); 36 // setAlignment( AlignTop );
37 37
@@ -75,2 +75,4 @@ DateBookEvent::DateBookEvent(const EffectiveEvent &ev,
75 75
76DateBookEvent::~DateBookEvent() {
77}
76 78
diff --git a/core/pim/today/plugins/datebook/datebookevent.h b/core/pim/today/plugins/datebook/datebookevent.h
index f8a9c03..8027809 100644
--- a/core/pim/today/plugins/datebook/datebookevent.h
+++ b/core/pim/today/plugins/datebook/datebookevent.h
@@ -28,11 +28,13 @@ class DateBookEvent: public OClickableLabel {
28public: 28public:
29 DateBookEvent( const EffectiveEvent &ev, 29 DateBookEvent( const EffectiveEvent &ev,
30 QWidget* parent = 0, 30 QWidget* parent = 0,
31 bool show_location = 0, 31 bool show_location = 0,
32 bool show_notes = 0, 32 bool show_notes = 0,
33 int maxCharClip = 0, 33 int maxCharClip = 0,
34 const char* name = 0, 34 const char* name = 0,
35 WFlags fl = 0 ); 35 WFlags fl = 0 );
36signals: 36 ~DateBookEvent();
37 void editEvent( const Event &e ); 37 signals:
38 void editEvent( const Event &e );
39
38private slots: 40private slots:
@@ -40,4 +42,4 @@ private slots:
40 void editMe(); 42 void editMe();
41private: 43 private:
42 DateBookDB *db; 44
43 QString ampmTime( QTime ); 45 QString ampmTime( QTime );