summaryrefslogtreecommitdiffstats
path: root/kitchensync/src/configguisyncmlobex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kitchensync/src/configguisyncmlobex.cpp')
-rw-r--r--kitchensync/src/configguisyncmlobex.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kitchensync/src/configguisyncmlobex.cpp b/kitchensync/src/configguisyncmlobex.cpp
index fe7354ed..1447f569 100644
--- a/kitchensync/src/configguisyncmlobex.cpp
+++ b/kitchensync/src/configguisyncmlobex.cpp
@@ -37,8 +37,8 @@
#include <tqtabwidget.h>
#include <tqvbox.h>
-ConfigGuiSyncmlObex::ConfigGuiSyncmlObex( const QSync::Member &member, TQWidget *parent )
- : ConfigGui( member, parent )
+ConfigGuiSyncmlObex::ConfigGuiSyncmlObex( const QSync::Member &member, TQWidget *tqparent )
+ : ConfigGui( member, tqparent )
{
TQTabWidget *tabWidget = new TQTabWidget( this );
topLayout()->addWidget( tabWidget );
@@ -308,12 +308,12 @@ TQString ConfigGuiSyncmlObex::save() const
return xml;
}
-void ConfigGuiSyncmlObex::addLineEdit( TQWidget *parent, const TQString &text, KComboBox **edit, int row )
+void ConfigGuiSyncmlObex::addLineEdit( TQWidget *tqparent, const TQString &text, KComboBox **edit, int row )
{
- TQLabel *label = new TQLabel( text, parent );
+ TQLabel *label = new TQLabel( text, tqparent );
mGridLayout->addWidget( label, row, 0 );
- *edit = new KComboBox( true, parent );
+ *edit = new KComboBox( true, tqparent );
mGridLayout->addWidget( *edit, row, 1 );
}