summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opieui/otaskbarapplet.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libopie2/opieui/otaskbarapplet.h b/libopie2/opieui/otaskbarapplet.h
index 773aba4..074367f 100644
--- a/libopie2/opieui/otaskbarapplet.h
+++ b/libopie2/opieui/otaskbarapplet.h
@@ -32,25 +32,25 @@
32#ifndef OTASKBARAPPLET_H 32#ifndef OTASKBARAPPLET_H
33#define OTASKBARAPPLET_H 33#define OTASKBARAPPLET_H
34 34
35#include <qpe/taskbarappletinterface.h> 35#include <qpe/taskbarappletinterface.h>
36 36
37/*====================================================================================== 37/*======================================================================================
38 * OTaskbarAppletWrapper 38 * OTaskbarAppletWrapper
39 *======================================================================================*/ 39 *======================================================================================*/
40 40
41template<class T> class OTaskbarAppletWrapper : public TaskbarAppletInterface 41template<class T> class OTaskbarAppletWrapper : public TaskbarAppletInterface
42{ 42{
43 public: 43 public:
44 OTaskbarAppletWrapper():_applet( 0 ), ref( 0 ) 44 OTaskbarAppletWrapper():_applet( 0 )
45 { 45 {
46 } 46 }
47 47
48 virtual ~OTaskbarAppletWrapper() 48 virtual ~OTaskbarAppletWrapper()
49 { 49 {
50 delete _applet; 50 delete _applet;
51 } 51 }
52 52
53 QRESULT queryInterface( const QUuid& uuid, QUnknownInterface** iface ) 53 QRESULT queryInterface( const QUuid& uuid, QUnknownInterface** iface )
54 { 54 {
55 qDebug( "OTaskbarAppletWrapper::queryInterface()" ); 55 qDebug( "OTaskbarAppletWrapper::queryInterface()" );
56 *iface = 0; 56 *iface = 0;
@@ -71,25 +71,24 @@ template<class T> class OTaskbarAppletWrapper : public TaskbarAppletInterface
71 { 71 {
72 if ( !_applet ) _applet = new T( parent ); 72 if ( !_applet ) _applet = new T( parent );
73 return _applet; 73 return _applet;
74 } 74 }
75 75
76 virtual int position() const 76 virtual int position() const
77 { 77 {
78 return T::position(); 78 return T::position();
79 } 79 }
80 80
81 private: 81 private:
82 T* _applet; 82 T* _applet;
83 ulong ref;
84}; 83};
85 84
86#include <qframe.h> 85#include <qframe.h>
87#include <qwidget.h> 86#include <qwidget.h>
88#include <qpe/qpeapplication.h> 87#include <qpe/qpeapplication.h>
89 88
90class QMouseEvent; 89class QMouseEvent;
91 90
92/*====================================================================================== 91/*======================================================================================
93 * OTaskbarApplet 92 * OTaskbarApplet
94 *======================================================================================*/ 93 *======================================================================================*/
95 94