diff options
-rw-r--r-- | kdpkg-install/console.cpp | 4 | ||||
-rw-r--r-- | kdpkg-install/console.h | 2 | ||||
-rw-r--r-- | kdpkg-install/install.cpp | 4 | ||||
-rw-r--r-- | kdpkg-install/install.h | 2 | ||||
-rw-r--r-- | kdpkg/kdpkg.cpp | 4 | ||||
-rw-r--r-- | kdpkg/kdpkg.h | 2 |
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); |