summaryrefslogtreecommitdiff
path: root/core/applets/multikeyapplet
authorzecke <zecke>2004-02-05 16:58:04 (UTC)
committer zecke <zecke>2004-02-05 16:58:04 (UTC)
commit416c72588577bca18ba1c9180701143e7e572eed (patch) (side-by-side diff)
tree216727329d2de8cafce72dc811deee77baf24927 /core/applets/multikeyapplet
parent4c4ed7176231558d01aeca2eb705fc6810ec7766 (diff)
downloadopie-416c72588577bca18ba1c9180701143e7e572eed.zip
opie-416c72588577bca18ba1c9180701143e7e572eed.tar.gz
opie-416c72588577bca18ba1c9180701143e7e572eed.tar.bz2
"Here we are now entertain US....."
Some janitor tasks... remove ulong ref; If we use Q_REFCOUNT
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
@@ -1,42 +1,42 @@
/**********************************************************************
** Copyright (C) 2004 Anton Kachalov mouse@altlinux.ru
** All rights reserved.
**
** This file may be distributed and/or modified under the terms of the
** 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);
return kbd;
}
int MultikeyAppletImpl::position() const
{
return 10;
}
#ifndef QT_NO_COMPONENT
QRESULT MultikeyAppletImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface )
{
*iface = 0;
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
@@ -13,28 +13,27 @@
**********************************************************************/
#ifndef __MULTIKEYAPPLETIMPL_H__
#define __MULTIKEYAPPLETIMPL_H__
#include <qpe/taskbarappletinterface.h>
class Multikey;
class MultikeyAppletImpl : public TaskbarAppletInterface
{
public:
MultikeyAppletImpl();
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__ */