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
v3.5.13-sru
tpearson 13 years ago
parent 6bb0f6dafc
commit a73f7ded1a

@ -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

@ -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()
{

@ -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 )

@ -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;

@ -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)
{

@ -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);

Loading…
Cancel
Save