summaryrefslogtreecommitdiffstats
path: root/kmilo/kmilo_kvaio/kvaio.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit625904bd3097f9749450428904ca14ff2531824d (patch)
treea45c43d5de71cb720078fa1272a4339815a919be /kmilo/kmilo_kvaio/kvaio.cpp
parent6335dc55802871b5a43492f217b6edbb420204c4 (diff)
downloadtdeutils-625904bd3097f9749450428904ca14ff2531824d.tar.gz
tdeutils-625904bd3097f9749450428904ca14ff2531824d.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmilo/kmilo_kvaio/kvaio.cpp')
-rw-r--r--kmilo/kmilo_kvaio/kvaio.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kmilo/kmilo_kvaio/kvaio.cpp b/kmilo/kmilo_kvaio/kvaio.cpp
index ed853f0..d527970 100644
--- a/kmilo/kmilo_kvaio/kvaio.cpp
+++ b/kmilo/kmilo_kvaio/kvaio.cpp
@@ -55,12 +55,12 @@ extern "C" {
}
-KVaio::KVaio(KMiloKVaio *tqparent, const char* name)
- : TQObject(tqparent, name),
+KVaio::KVaio(KMiloKVaio *parent, const char* name)
+ : TQObject(parent, name),
mDisp(0),
mTimer (new TQTimer (this) )
{
- mytqparent = tqparent;
+ myparent = parent;
mDriver = new KVaioDriverInterface(this);
@@ -176,7 +176,7 @@ void KVaio::slotVaioEvent(int event)
bool KVaio::showTextMsg(const TQString& msg)
{
- return mytqparent->showTextMsg(msg);
+ return myparent->showTextMsg(msg);
}
@@ -184,7 +184,7 @@ bool KVaio::showTextMsg(const TQString& msg)
bool KVaio::showProgressMsg(const TQString& msg, int value)
{
m_progress = value;
- return mytqparent->showProgressMsg(msg,value);
+ return myparent->showProgressMsg(msg,value);
}
void KVaio::blankScreen()