summaryrefslogtreecommitdiffstats
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
commita73f7ded1a7eb50e188d42bc8697bb9ce1d4294c (patch)
treee3d42853799e25b10c3622885f11972415a84cbe
parent6bb0f6dafc28bba6a75f17f947f7fef051a87c5a (diff)
downloadkdpkg-a73f7ded.tar.gz
kdpkg-a73f7ded.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdpkg@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--kdpkg-install/console.cpp4
-rw-r--r--kdpkg-install/console.h2
-rw-r--r--kdpkg-install/install.cpp4
-rw-r--r--kdpkg-install/install.h2
-rw-r--r--kdpkg/kdpkg.cpp4
-rw-r--r--kdpkg/kdpkg.h2
6 files changed, 9 insertions, 9 deletions
diff --git a/kdpkg-install/console.cpp b/kdpkg-install/console.cpp
index cb2d0cc..754fed0 100644
--- a/kdpkg-install/console.cpp
+++ b/kdpkg-install/console.cpp
@@ -40,8 +40,8 @@
using namespace std;
-console::console(TQWidget *tqparent, const TQStrList &run, const char *name, const TQStringList &)
-: Widget(tqparent,name)
+console::console(TQWidget *parent, const TQStrList &run, const char *name, const TQStringList &)
+: Widget(parent,name)
{
// Get KDE prefix
diff --git a/kdpkg-install/console.h b/kdpkg-install/console.h
index 5e54f17..fa3e8a4 100644
--- a/kdpkg-install/console.h
+++ b/kdpkg-install/console.h
@@ -35,7 +35,7 @@ class console : public Widget
TQ_OBJECT
public:
- console(TQWidget *tqparent = 0L, const TQStrList &run = TQStrList(), const char *name = 0L, const TQStringList &foo = TQStringList());
+ console(TQWidget *parent = 0L, const TQStrList &run = TQStrList(), const char *name = 0L, const TQStringList &foo = TQStringList());
// console
ExtTerminalInterface *terminal()
{
diff --git a/kdpkg-install/install.cpp b/kdpkg-install/install.cpp
index 1c738ec..c766aaa 100644
--- a/kdpkg-install/install.cpp
+++ b/kdpkg-install/install.cpp
@@ -43,8 +43,8 @@
using namespace std;
-install::install( const TQString &url, TQWidget *tqparent, const char *name, const TQStringList &)
-:InstallDialog(tqparent, name)
+install::install( const TQString &url, TQWidget *parent, const char *name, const TQStringList &)
+:InstallDialog(parent, name)
{
if( !url )
diff --git a/kdpkg-install/install.h b/kdpkg-install/install.h
index 8117c89..3e65c3d 100644
--- a/kdpkg-install/install.h
+++ b/kdpkg-install/install.h
@@ -33,7 +33,7 @@ class install : public InstallDialog
TQ_OBJECT
public:
- install(const TQString &url = TQString(), TQWidget *tqparent = 0L, const char *name = 0L, const TQStringList &foo = TQStringList());
+ install(const TQString &url = TQString(), TQWidget *parent = 0L, const char *name = 0L, const TQStringList &foo = TQStringList());
TQString installPkg;
TQString removePkg;
TQString path;
diff --git a/kdpkg/kdpkg.cpp b/kdpkg/kdpkg.cpp
index fb5f594..1ebe469 100644
--- a/kdpkg/kdpkg.cpp
+++ b/kdpkg/kdpkg.cpp
@@ -39,8 +39,8 @@
#include "kdpkg.h"
-kdpkg::kdpkg( const TQString &url, TQWidget *tqparent, const char *name, const TQStringList &)
-:KdpkgDialog(tqparent, name)
+kdpkg::kdpkg( const TQString &url, TQWidget *parent, const char *name, const TQStringList &)
+:KdpkgDialog(parent, name)
{
diff --git a/kdpkg/kdpkg.h b/kdpkg/kdpkg.h
index 9e1e7cd..88df9a2 100644
--- a/kdpkg/kdpkg.h
+++ b/kdpkg/kdpkg.h
@@ -33,7 +33,7 @@ class kdpkg : public KdpkgDialog
TQ_OBJECT
public:
- kdpkg(const TQString &url = TQString(), TQWidget *tqparent = 0L, const char *name = 0L, const TQStringList &foo = TQStringList());
+ kdpkg(const TQString &url = TQString(), TQWidget *parent = 0L, const char *name = 0L, const TQStringList &foo = TQStringList());
void checkArchitecture(TQString);