From 0af800b30845a0d3df8be9db5c11c06fd81386e7 Mon Sep 17 00:00:00 2001 From: harlekin Date: Mon, 10 Feb 2003 23:54:03 +0000 Subject: fix the -missing dtor leads to 12 kb memleak per cycle- bug --- (limited to 'core/pim') 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 @@ -33,7 +33,7 @@ DateBookEvent::DateBookEvent(const EffectiveEvent &ev, WFlags fl) : OClickableLabel(parent,name,fl), event(ev) { - setAlignment( AlignTop ); + // setAlignment( AlignTop ); QString msg; @@ -73,6 +73,8 @@ DateBookEvent::DateBookEvent(const EffectiveEvent &ev, connect( this, SIGNAL( clicked() ), this, SLOT( editMe() ) ); } +DateBookEvent::~DateBookEvent() { +} /** * AM/PM timestring conversion. 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 @@ -26,20 +26,22 @@ class DateBookEvent: public OClickableLabel { Q_OBJECT public: - DateBookEvent( const EffectiveEvent &ev, - QWidget* parent = 0, - bool show_location = 0, - bool show_notes = 0, - int maxCharClip = 0, - const char* name = 0, - WFlags fl = 0 ); -signals: - void editEvent( const Event &e ); + DateBookEvent( const EffectiveEvent &ev, + QWidget* parent = 0, + bool show_location = 0, + bool show_notes = 0, + int maxCharClip = 0, + const char* name = 0, + WFlags fl = 0 ); + ~DateBookEvent(); + signals: + void editEvent( const Event &e ); + private slots: void editEventSlot( const Event &e ); void editMe(); -private: - DateBookDB *db; + private: + QString ampmTime( QTime ); QString differDate( QDate date ); const EffectiveEvent event; -- cgit v0.9.0.2