summaryrefslogtreecommitdiff
path: root/noncore
authorsimon <simon>2002-11-21 12:08:00 (UTC)
committer simon <simon>2002-11-21 12:08:00 (UTC)
commit50058bc62134e4a23da48bb9f797a66fb25b1f91 (patch) (unidiff)
tree59ec820e2ce7ceba4a01c6b3cc95c1013cbd9b58 /noncore
parent58715bab157ca913a08b7ce26c230bbc0be5f70b (diff)
downloadopie-50058bc62134e4a23da48bb9f797a66fb25b1f91.zip
opie-50058bc62134e4a23da48bb9f797a66fb25b1f91.tar.gz
opie-50058bc62134e4a23da48bb9f797a66fb25b1f91.tar.bz2
- delete the guiPart object in the destructor
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/todayplugins/fortune/fortunepluginimpl.cpp1
-rw-r--r--noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginimpl.cpp1
-rw-r--r--noncore/todayplugins/weather/weatherpluginimpl.cpp1
3 files changed, 3 insertions, 0 deletions
diff --git a/noncore/todayplugins/fortune/fortunepluginimpl.cpp b/noncore/todayplugins/fortune/fortunepluginimpl.cpp
index 4844f74..466e322 100644
--- a/noncore/todayplugins/fortune/fortunepluginimpl.cpp
+++ b/noncore/todayplugins/fortune/fortunepluginimpl.cpp
@@ -15,24 +15,25 @@
15 ***************************************************************************/ 15 ***************************************************************************/
16 16
17#include "fortuneplugin.h" 17#include "fortuneplugin.h"
18#include "fortunepluginimpl.h" 18#include "fortunepluginimpl.h"
19 19
20FortunePluginImpl::FortunePluginImpl() 20FortunePluginImpl::FortunePluginImpl()
21{ 21{
22 fortunePlugin = new FortunePlugin(); 22 fortunePlugin = new FortunePlugin();
23} 23}
24 24
25FortunePluginImpl::~FortunePluginImpl() 25FortunePluginImpl::~FortunePluginImpl()
26{ 26{
27 delete fortunePlugin;
27} 28}
28 29
29 30
30TodayPluginObject* FortunePluginImpl::guiPart() 31TodayPluginObject* FortunePluginImpl::guiPart()
31{ 32{
32 return fortunePlugin; 33 return fortunePlugin;
33} 34}
34 35
35QRESULT FortunePluginImpl::queryInterface( const QUuid & uuid, QUnknownInterface **iface ) 36QRESULT FortunePluginImpl::queryInterface( const QUuid & uuid, QUnknownInterface **iface )
36{ 37{
37 *iface = 0; 38 *iface = 0;
38 if ( ( uuid == IID_QUnknown ) || ( uuid == IID_TodayPluginInterface ) ) { 39 if ( ( uuid == IID_QUnknown ) || ( uuid == IID_TodayPluginInterface ) ) {
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginimpl.cpp b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginimpl.cpp
index 9a640d4..c17781b 100644
--- a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginimpl.cpp
+++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginimpl.cpp
@@ -15,24 +15,25 @@
15 ***************************************************************************/ 15 ***************************************************************************/
16 16
17 17
18 18
19#include "stocktickerplugin.h" 19#include "stocktickerplugin.h"
20#include "stocktickerpluginimpl.h" 20#include "stocktickerpluginimpl.h"
21 21
22StockTickerPluginImpl::StockTickerPluginImpl() { 22StockTickerPluginImpl::StockTickerPluginImpl() {
23 stocktickerPlugin = new StockTickerPlugin(); 23 stocktickerPlugin = new StockTickerPlugin();
24} 24}
25 25
26StockTickerPluginImpl::~StockTickerPluginImpl() { 26StockTickerPluginImpl::~StockTickerPluginImpl() {
27 delete stocktickerPlugin;
27} 28}
28 29
29 30
30TodayPluginObject* StockTickerPluginImpl::guiPart() { 31TodayPluginObject* StockTickerPluginImpl::guiPart() {
31 return stocktickerPlugin; 32 return stocktickerPlugin;
32} 33}
33 34
34QRESULT StockTickerPluginImpl::queryInterface( const QUuid & uuid, QUnknownInterface **iface ) { 35QRESULT StockTickerPluginImpl::queryInterface( const QUuid & uuid, QUnknownInterface **iface ) {
35 *iface = 0; 36 *iface = 0;
36 if ( ( uuid == IID_QUnknown ) || ( uuid == IID_TodayPluginInterface ) ) { 37 if ( ( uuid == IID_QUnknown ) || ( uuid == IID_TodayPluginInterface ) ) {
37 *iface = this, (*iface)->addRef(); 38 *iface = this, (*iface)->addRef();
38 } 39 }
diff --git a/noncore/todayplugins/weather/weatherpluginimpl.cpp b/noncore/todayplugins/weather/weatherpluginimpl.cpp
index b5c7d0a..1a7c27b 100644
--- a/noncore/todayplugins/weather/weatherpluginimpl.cpp
+++ b/noncore/todayplugins/weather/weatherpluginimpl.cpp
@@ -27,24 +27,25 @@
27*/ 27*/
28 28
29#include "weatherplugin.h" 29#include "weatherplugin.h"
30#include "weatherpluginimpl.h" 30#include "weatherpluginimpl.h"
31 31
32WeatherPluginImpl::WeatherPluginImpl() 32WeatherPluginImpl::WeatherPluginImpl()
33{ 33{
34 weatherPlugin = new WeatherPlugin(); 34 weatherPlugin = new WeatherPlugin();
35} 35}
36 36
37WeatherPluginImpl::~WeatherPluginImpl() 37WeatherPluginImpl::~WeatherPluginImpl()
38{ 38{
39 delete weatherPlugin;
39} 40}
40 41
41 42
42TodayPluginObject* WeatherPluginImpl::guiPart() 43TodayPluginObject* WeatherPluginImpl::guiPart()
43{ 44{
44 return weatherPlugin; 45 return weatherPlugin;
45} 46}
46 47
47QRESULT WeatherPluginImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) 48QRESULT WeatherPluginImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface )
48{ 49{
49 *iface = 0; 50 *iface = 0;
50 if ( ( uuid == IID_QUnknown ) || ( uuid == IID_TodayPluginInterface ) ) 51 if ( ( uuid == IID_QUnknown ) || ( uuid == IID_TodayPluginInterface ) )