summaryrefslogtreecommitdiffstats
path: root/kandy
diff options
context:
space:
mode:
Diffstat (limited to 'kandy')
-rw-r--r--kandy/src/cmdpropertiesdialog.cpp10
-rw-r--r--kandy/src/cmdpropertiesdialog.h2
-rw-r--r--kandy/src/commanditem.cpp8
-rw-r--r--kandy/src/commanditem.h4
-rw-r--r--kandy/src/commandscheduler.cpp4
-rw-r--r--kandy/src/commandscheduler.h2
-rw-r--r--kandy/src/commandset.cpp8
-rw-r--r--kandy/src/commandset.h4
-rw-r--r--kandy/src/kandyprefsdialog.cpp4
-rw-r--r--kandy/src/kandyprefsdialog.h2
-rw-r--r--kandy/src/kandyview.cpp4
-rw-r--r--kandy/src/kandyview.h2
-rw-r--r--kandy/src/mobilegui.cpp12
-rw-r--r--kandy/src/mobilegui.h4
-rw-r--r--kandy/src/modem.cpp4
-rw-r--r--kandy/src/modem.h2
16 files changed, 38 insertions, 38 deletions
diff --git a/kandy/src/cmdpropertiesdialog.cpp b/kandy/src/cmdpropertiesdialog.cpp
index b71a62f2..3e72754f 100644
--- a/kandy/src/cmdpropertiesdialog.cpp
+++ b/kandy/src/cmdpropertiesdialog.cpp
@@ -36,8 +36,8 @@
class ParameterItem : public TQCheckListItem {
public:
- ParameterItem(ATParameter *p,TQListView *tqparent) :
- TQCheckListItem(tqparent,p->name(),CheckBox),mParameter(p)
+ ParameterItem(ATParameter *p,TQListView *parent) :
+ TQCheckListItem(parent,p->name(),CheckBox),mParameter(p)
{
setText(1,p->value());
setOn(p->userInput());
@@ -56,16 +56,16 @@ class ParameterItem : public TQCheckListItem {
/*
- * Constructs a CmdPropertiesDialog which is a child of 'tqparent', with the
+ * Constructs a CmdPropertiesDialog which is a child of 'parent', with the
* name 'name' and widget flags set to 'f'
*
* The dialog will by default be modeless, unless you set 'modal' to
* TRUE to construct a modal dialog.
*/
-CmdPropertiesDialog::CmdPropertiesDialog(ATCommand *cmd, TQWidget* tqparent,
+CmdPropertiesDialog::CmdPropertiesDialog(ATCommand *cmd, TQWidget* parent,
const char* name, bool modal,
WFlags fl )
- : CmdPropertiesDialog_base( tqparent, name, modal, fl )
+ : CmdPropertiesDialog_base( parent, name, modal, fl )
{
mCmd = cmd;
diff --git a/kandy/src/cmdpropertiesdialog.h b/kandy/src/cmdpropertiesdialog.h
index 05242515..9edf76c9 100644
--- a/kandy/src/cmdpropertiesdialog.h
+++ b/kandy/src/cmdpropertiesdialog.h
@@ -33,7 +33,7 @@ class CmdPropertiesDialog : public CmdPropertiesDialog_base
Q_OBJECT
TQ_OBJECT
public:
- CmdPropertiesDialog(ATCommand *cmd,TQWidget* tqparent=0,const char* name=0,
+ CmdPropertiesDialog(ATCommand *cmd,TQWidget* parent=0,const char* name=0,
bool modal=false,WFlags fl=0);
~CmdPropertiesDialog();
diff --git a/kandy/src/commanditem.cpp b/kandy/src/commanditem.cpp
index f8eceb2c..9586abbd 100644
--- a/kandy/src/commanditem.cpp
+++ b/kandy/src/commanditem.cpp
@@ -70,13 +70,13 @@ void CommandItem::load(TQDomElement *c)
setItemText();
}
-void CommandItem::save(TQDomDocument *doc,TQDomElement *tqparent)
+void CommandItem::save(TQDomDocument *doc,TQDomElement *parent)
{
TQDomElement c = doc->createElement("command");
c.setAttribute("name",mCommand->cmdName());
c.setAttribute("string",mCommand->cmdString());
c.setAttribute("hexoutput",mCommand->hexOutput() ? "y" : "n");
- tqparent->appendChild(c);
+ parent->appendChild(c);
TQPtrList<ATParameter> paras = mCommand->parameters();
for(uint i=0;i<paras.count();++i) {
@@ -85,13 +85,13 @@ void CommandItem::save(TQDomDocument *doc,TQDomElement *tqparent)
}
void CommandItem::saveParameter(ATParameter *p, TQDomDocument *doc,
- TQDomElement *tqparent)
+ TQDomElement *parent)
{
TQDomElement e = doc->createElement("parameter");
e.setAttribute("name",p->name());
e.setAttribute("value",p->value());
e.setAttribute("userinput",p->userInput() ? "y" : "n");
- tqparent->appendChild(e);
+ parent->appendChild(e);
}
void CommandItem::setItemText()
diff --git a/kandy/src/commanditem.h b/kandy/src/commanditem.h
index d92c9e74..46a648dd 100644
--- a/kandy/src/commanditem.h
+++ b/kandy/src/commanditem.h
@@ -43,12 +43,12 @@ class CommandItem : public TQListViewItem {
ATCommand *command();
void load(TQDomElement *c);
- void save(TQDomDocument *doc,TQDomElement *tqparent);
+ void save(TQDomDocument *doc,TQDomElement *parent);
void setItemText();
protected:
- void saveParameter(ATParameter *p, TQDomDocument *doc,TQDomElement *tqparent);
+ void saveParameter(ATParameter *p, TQDomDocument *doc,TQDomElement *parent);
private:
ATCommand *mCommand;
diff --git a/kandy/src/commandscheduler.cpp b/kandy/src/commandscheduler.cpp
index 3a1001ed..07658214 100644
--- a/kandy/src/commandscheduler.cpp
+++ b/kandy/src/commandscheduler.cpp
@@ -30,9 +30,9 @@
#include "commandscheduler.h"
#include "commandscheduler.moc"
-CommandScheduler::CommandScheduler(Modem *modem,TQObject *tqparent,
+CommandScheduler::CommandScheduler(Modem *modem,TQObject *parent,
const char *name) :
- TQObject(tqparent,name),
+ TQObject(parent,name),
mModem(modem)
{
connect(mModem,TQT_SIGNAL(gotLine(const char *)),
diff --git a/kandy/src/commandscheduler.h b/kandy/src/commandscheduler.h
index d18f82dc..c99476bd 100644
--- a/kandy/src/commandscheduler.h
+++ b/kandy/src/commandscheduler.h
@@ -36,7 +36,7 @@ class CommandScheduler : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
- CommandScheduler (Modem *modem,TQObject *tqparent = 0, const char *name = 0);
+ CommandScheduler (Modem *modem,TQObject *parent = 0, const char *name = 0);
void execute(const TQString &command);
void execute(ATCommand *command);
diff --git a/kandy/src/commandset.cpp b/kandy/src/commandset.cpp
index d1bcc631..e6e5d70f 100644
--- a/kandy/src/commandset.cpp
+++ b/kandy/src/commandset.cpp
@@ -129,13 +129,13 @@ void CommandSet::loadCommand(ATCommand *command,TQDomElement *c)
}
void CommandSet::saveCommand(ATCommand *command,TQDomDocument *doc,
- TQDomElement *tqparent)
+ TQDomElement *parent)
{
TQDomElement c = doc->createElement("command");
c.setAttribute("name",command->cmdName());
c.setAttribute("string",command->cmdString());
c.setAttribute("hexoutput",command->hexOutput() ? "y" : "n");
- tqparent->appendChild(c);
+ parent->appendChild(c);
TQPtrList<ATParameter> paras = command->parameters();
for(uint i=0;i<paras.count();++i) {
@@ -144,11 +144,11 @@ void CommandSet::saveCommand(ATCommand *command,TQDomDocument *doc,
}
void CommandSet::saveParameter(ATParameter *p, TQDomDocument *doc,
- TQDomElement *tqparent)
+ TQDomElement *parent)
{
TQDomElement e = doc->createElement("parameter");
e.setAttribute("name",p->name());
e.setAttribute("value",p->value());
e.setAttribute("userinput",p->userInput() ? "y" : "n");
- tqparent->appendChild(e);
+ parent->appendChild(e);
}
diff --git a/kandy/src/commandset.h b/kandy/src/commandset.h
index d297fe63..58654233 100644
--- a/kandy/src/commandset.h
+++ b/kandy/src/commandset.h
@@ -51,8 +51,8 @@ class CommandSet {
protected:
void loadCommand(ATCommand *,TQDomElement *c);
- void saveCommand(ATCommand *,TQDomDocument *doc,TQDomElement *tqparent);
- void saveParameter(ATParameter *p, TQDomDocument *doc,TQDomElement *tqparent);
+ void saveCommand(ATCommand *,TQDomDocument *doc,TQDomElement *parent);
+ void saveParameter(ATParameter *p, TQDomDocument *doc,TQDomElement *parent);
private:
TQPtrList<ATCommand> mList;
diff --git a/kandy/src/kandyprefsdialog.cpp b/kandy/src/kandyprefsdialog.cpp
index 1e233aaa..1bb03eb1 100644
--- a/kandy/src/kandyprefsdialog.cpp
+++ b/kandy/src/kandyprefsdialog.cpp
@@ -54,8 +54,8 @@
#include "kandyprefsdialog.moc"
-KandyPrefsDialog::KandyPrefsDialog(TQWidget *tqparent, char *name, bool modal) :
- KPrefsDialog(KandyPrefs::self(),tqparent,name,modal)
+KandyPrefsDialog::KandyPrefsDialog(TQWidget *parent, char *name, bool modal) :
+ KPrefsDialog(KandyPrefs::self(),parent,name,modal)
{
setupSerialTab();
setupAddressbookTab();
diff --git a/kandy/src/kandyprefsdialog.h b/kandy/src/kandyprefsdialog.h
index 886e3504..4e367faf 100644
--- a/kandy/src/kandyprefsdialog.h
+++ b/kandy/src/kandyprefsdialog.h
@@ -45,7 +45,7 @@ class KandyPrefsDialog : public KPrefsDialog
TQ_OBJECT
public:
/** Initialize dialog and pages */
- KandyPrefsDialog(TQWidget *tqparent=0,char *name=0,bool modal=false);
+ KandyPrefsDialog(TQWidget *parent=0,char *name=0,bool modal=false);
~KandyPrefsDialog();
protected:
diff --git a/kandy/src/kandyview.cpp b/kandy/src/kandyview.cpp
index 6e76235b..d47f5bcb 100644
--- a/kandy/src/kandyview.cpp
+++ b/kandy/src/kandyview.cpp
@@ -57,8 +57,8 @@
#include "kandyview.h"
#include "kandyview.moc"
-KandyView::KandyView(CommandScheduler *scheduler,TQWidget *tqparent)
- : TQWidget(tqparent)
+KandyView::KandyView(CommandScheduler *scheduler,TQWidget *parent)
+ : TQWidget(parent)
{
mModified = false;
mScheduler = scheduler;
diff --git a/kandy/src/kandyview.h b/kandy/src/kandyview.h
index 41153a54..8547dbf4 100644
--- a/kandy/src/kandyview.h
+++ b/kandy/src/kandyview.h
@@ -56,7 +56,7 @@ class KandyView : public TQWidget
/**
* Default constructor
*/
- KandyView(CommandScheduler *,TQWidget *tqparent);
+ KandyView(CommandScheduler *,TQWidget *parent);
/**
* Destructor
diff --git a/kandy/src/mobilegui.cpp b/kandy/src/mobilegui.cpp
index 08cf54cc..70d0656f 100644
--- a/kandy/src/mobilegui.cpp
+++ b/kandy/src/mobilegui.cpp
@@ -176,21 +176,21 @@ class PhoneBookItem : public TQCheckListItem
/*
- * Constructs a MobileGui which is a child of 'tqparent', with the
+ * Constructs a MobileGui which is a child of 'parent', with the
* name 'name' and widget flags set to 'f'
*
* The dialog will by default be modeless, unless you set 'modal' to
* TRUE to construct a modal dialog.
*/
MobileGui::MobileGui( CommandScheduler *scheduler, KandyPrefs *kprefs,
- TQWidget* tqparent, const char* name, WFlags fl ) :
- DCOPObject( "KandyIface" ), MobileGui_base( tqparent, name, fl )
+ TQWidget* parent, const char* name, WFlags fl ) :
+ DCOPObject( "KandyIface" ), MobileGui_base( parent, name, fl )
{
// Setup links to related classes
mScheduler = scheduler;
mSyncer = new AddressSyncer;
mPrefs = kprefs;
- mtqparent = tqparent;
+ mparent = parent;
// Setup mobile phone specific data
mMobManufacturer = "";
@@ -1463,7 +1463,7 @@ void MobileGui::toggleConnection()
setKabState( UNLOADED );
setMobState( UNLOADED );
- ((MobileMain *) mtqparent)->statusBar()->changeItem( i18n(" Connected "), 1 );
+ ((MobileMain *) mparent)->statusBar()->changeItem( i18n(" Connected "), 1 );
} else {
warnKabState( UNLOADED );
@@ -1510,7 +1510,7 @@ void MobileGui::disconnectGUI()
mPBIndexOccupied.resize( 0, false );
- ((MobileMain *) mtqparent)->statusBar()->changeItem( i18n(" Disconnected "),
+ ((MobileMain *) mparent)->statusBar()->changeItem( i18n(" Disconnected "),
1 );
}
diff --git a/kandy/src/mobilegui.h b/kandy/src/mobilegui.h
index cb28f188..b8bfeba2 100644
--- a/kandy/src/mobilegui.h
+++ b/kandy/src/mobilegui.h
@@ -42,7 +42,7 @@ class MobileGui : public MobileGui_base, virtual public KandyIface
TQ_OBJECT
public:
- MobileGui( CommandScheduler *, KandyPrefs *kprefs, TQWidget* tqparent=0,
+ MobileGui( CommandScheduler *, KandyPrefs *kprefs, TQWidget* parent=0,
const char* name=0, WFlags fl=0 );
~MobileGui();
@@ -80,7 +80,7 @@ class MobileGui : public MobileGui_base, virtual public KandyIface
CommandScheduler *mScheduler;
AddressSyncer *mSyncer;
KandyPrefs *mPrefs;
- TQWidget *mtqparent;
+ TQWidget *mparent;
/* String Formatting Routines */
TQString quote( const TQString & );
diff --git a/kandy/src/modem.cpp b/kandy/src/modem.cpp
index 113f2e4b..3956376a 100644
--- a/kandy/src/modem.cpp
+++ b/kandy/src/modem.cpp
@@ -74,8 +74,8 @@
-Modem::Modem( KandyPrefs *kprefs, TQObject *tqparent, const char *name ) :
- TQObject(tqparent, name)
+Modem::Modem( KandyPrefs *kprefs, TQObject *parent, const char *name ) :
+ TQObject(parent, name)
{
mOpen = false;
diff --git a/kandy/src/modem.h b/kandy/src/modem.h
index 0b30a05b..5c8521c1 100644
--- a/kandy/src/modem.h
+++ b/kandy/src/modem.h
@@ -48,7 +48,7 @@ class Modem : public TQObject
Q_OBJECT
TQ_OBJECT
public:
- Modem(KandyPrefs *kprefs, TQObject *tqparent = 0, const char *name = 0);
+ Modem(KandyPrefs *kprefs, TQObject *parent = 0, const char *name = 0);
virtual ~Modem();
void setSpeed(int speed);