diff options
Diffstat (limited to 'kitchensync/src/configguimoto.cpp')
-rw-r--r-- | kitchensync/src/configguimoto.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kitchensync/src/configguimoto.cpp b/kitchensync/src/configguimoto.cpp index c44a2b406..3314dbef8 100644 --- a/kitchensync/src/configguimoto.cpp +++ b/kitchensync/src/configguimoto.cpp @@ -29,8 +29,8 @@ #include <kdialog.h> #include <klocale.h> -ConfigGuiMoto::ConfigGuiMoto( const QSync::Member &member, TQWidget *parent ) - : ConfigGui( member, parent ) +ConfigGuiMoto::ConfigGuiMoto( const QSync::Member &member, TQWidget *tqparent ) + : ConfigGui( member, tqparent ) { initGUI(); } @@ -43,7 +43,7 @@ void ConfigGuiMoto::load( const TQString &xml ) TQDomNode node; for( node = docElement.firstChild(); !node.isNull(); node = node.nextSibling() ) { TQDomElement element = node.toElement(); - if ( element.tagName() == "device" ) { + if ( element.tagName() == "tqdevice" ) { mDeviceString->setText( element.text() ); } } @@ -53,7 +53,7 @@ TQString ConfigGuiMoto::save() const { TQString config = "<config>\n"; - config += TQString( "<device>%1</device>\n" ).arg( mDeviceString->text() ); + config += TQString( "<tqdevice>%1</tqdevice>\n" ).arg( mDeviceString->text() ); config += "</config>"; |