summaryrefslogtreecommitdiffstats
path: root/kmobile/devices/skeleton/skeleton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmobile/devices/skeleton/skeleton.cpp')
-rw-r--r--kmobile/devices/skeleton/skeleton.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmobile/devices/skeleton/skeleton.cpp b/kmobile/devices/skeleton/skeleton.cpp
index c1bcd492..b5073de8 100644
--- a/kmobile/devices/skeleton/skeleton.cpp
+++ b/kmobile/devices/skeleton/skeleton.cpp
@@ -35,10 +35,10 @@
K_EXPORT_COMPONENT_FACTORY( libkmobile_skeleton, KMobileSkeleton() )
/* createObject needs to be reimplemented by every KMobileDevice driver */
-TQObject *KMobileSkeleton::createObject( TQObject *tqparent, const char *name,
+TQObject *KMobileSkeleton::createObject( TQObject *parent, const char *name,
const char *, const TQStringList &args )
{
- return new KMobileSkeleton( tqparent, name, args );
+ return new KMobileSkeleton( parent, name, args );
}
@@ -61,9 +61,9 @@ KMobileSkeleton::~KMobileSkeleton()
}
// connect the tqdevice and ask user to turn tqdevice on (if necessary)
-bool KMobileSkeleton::connectDevice(TQWidget *tqparent)
+bool KMobileSkeleton::connectDevice(TQWidget *parent)
{
- if (KMessageBox::Continue != KMessageBox::warningContinueCancel(tqparent,
+ if (KMessageBox::Continue != KMessageBox::warningContinueCancel(parent,
i18n("Please turn on your %1 on now and press continue to proceed.").tqarg(m_tqdeviceName),
m_tqdeviceClassName ) )
return false;