summaryrefslogtreecommitdiff
path: root/core/applets/multikeyapplet
Side-by-side diff
Diffstat (limited to 'core/applets/multikeyapplet') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/multikeyapplet/multikeyappletimpl.cpp2
-rw-r--r--core/applets/multikeyapplet/multikeyappletimpl.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/core/applets/multikeyapplet/multikeyappletimpl.cpp b/core/applets/multikeyapplet/multikeyappletimpl.cpp
index adf92c4..9fa6ef1 100644
--- a/core/applets/multikeyapplet/multikeyappletimpl.cpp
+++ b/core/applets/multikeyapplet/multikeyappletimpl.cpp
@@ -6,25 +6,25 @@
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
**********************************************************************/
#include "multikey.h"
#include "multikeyappletimpl.h"
MultikeyAppletImpl::MultikeyAppletImpl()
- : kbd(0), ref(0)
+ : kbd(0)
{
}
MultikeyAppletImpl::~MultikeyAppletImpl()
{
delete kbd;
}
QWidget *MultikeyAppletImpl::applet( QWidget *parent )
{
if ( !kbd )
kbd = new Multikey(parent);
diff --git a/core/applets/multikeyapplet/multikeyappletimpl.h b/core/applets/multikeyapplet/multikeyappletimpl.h
index c77e347..68962ee 100644
--- a/core/applets/multikeyapplet/multikeyappletimpl.h
+++ b/core/applets/multikeyapplet/multikeyappletimpl.h
@@ -25,16 +25,15 @@ public:
virtual ~MultikeyAppletImpl();
#ifndef QT_NO_COMPONENT
QRESULT queryInterface( const QUuid&, QUnknownInterface** );
Q_REFCOUNT
#endif
virtual QWidget *applet( QWidget *parent );
virtual int position() const;
private:
Multikey *kbd;
- ulong ref;
};
#endif /* __MULTIKEYAPPLETIMPL_H__ */