summaryrefslogtreecommitdiff
path: root/noncore/applets/wirelessapplet/wirelessappletimpl.cpp
authorzecke <zecke>2004-02-05 17:43:45 (UTC)
committer zecke <zecke>2004-02-05 17:43:45 (UTC)
commitc5db70388cbe21934d4e3b2df3e8c8c1d9807d41 (patch) (side-by-side diff)
tree5ec39d9114a60dac06c58e2bcf700f8d0b9a4345 /noncore/applets/wirelessapplet/wirelessappletimpl.cpp
parentc79bbb6696edf7539ebeda64092f3f91f65ba500 (diff)
downloadopie-c5db70388cbe21934d4e3b2df3e8c8c1d9807d41.zip
opie-c5db70388cbe21934d4e3b2df3e8c8c1d9807d41.tar.gz
opie-c5db70388cbe21934d4e3b2df3e8c8c1d9807d41.tar.bz2
Janitor: ulong ref removed
Diffstat (limited to 'noncore/applets/wirelessapplet/wirelessappletimpl.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/wirelessapplet/wirelessappletimpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/applets/wirelessapplet/wirelessappletimpl.cpp b/noncore/applets/wirelessapplet/wirelessappletimpl.cpp
index 8b7afcf..de70714 100644
--- a/noncore/applets/wirelessapplet/wirelessappletimpl.cpp
+++ b/noncore/applets/wirelessapplet/wirelessappletimpl.cpp
@@ -1,49 +1,49 @@
/**********************************************************************
** Copyright (C) 2000 Trolltech AS. All rights reserved.
**
** This file is part of Qtopia Environment.
**
** 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.
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
#include "wireless.h"
#include "wirelessappletimpl.h"
WirelessAppletImpl::WirelessAppletImpl()
- : wireless(0), ref(0)
+ : wireless(0)
{
}
WirelessAppletImpl::~WirelessAppletImpl()
{
delete wireless;
}
QWidget *WirelessAppletImpl::applet( QWidget *parent )
{
if ( !wireless )
wireless = new WirelessApplet( parent );
return wireless;
}
int WirelessAppletImpl::position() const
{
return 6;
}
QRESULT WirelessAppletImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface )
{
*iface = 0;
if ( uuid == IID_QUnknown )