diff options
Diffstat (limited to 'src/kcm')
-rw-r--r-- | src/kcm/configdialog.cpp | 12 | ||||
-rw-r--r-- | src/kcm/configdlg.ui | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/kcm/configdialog.cpp b/src/kcm/configdialog.cpp index 70950db..6da6e91 100644 --- a/src/kcm/configdialog.cpp +++ b/src/kcm/configdialog.cpp @@ -314,11 +314,11 @@ void ConfigDialog::load() { TQString entry; InterfaceCommand cmd; - entry = TQString( "RunAsRoot%1" ).tqarg( i + 1 ); + entry = TQString( "RunAsRoot%1" ).arg( i + 1 ); cmd.runAsRoot = config->readBoolEntry( entry ); - entry = TQString( "Command%1" ).tqarg( i + 1 ); + entry = TQString( "Command%1" ).arg( i + 1 ); cmd.command = config->readEntry( entry ); - entry = TQString( "MenuText%1" ).tqarg( i + 1 ); + entry = TQString( "MenuText%1" ).arg( i + 1 ); cmd.menuText = config->readEntry( entry ); settings->commands.append( cmd ); } @@ -384,11 +384,11 @@ void ConfigDialog::save() for ( uint i = 0; i < settings->commands.size(); i++ ) { TQString entry; - entry = TQString( "RunAsRoot%1" ).tqarg( i + 1 ); + entry = TQString( "RunAsRoot%1" ).arg( i + 1 ); config->writeEntry( entry, settings->commands[i].runAsRoot ); - entry = TQString( "Command%1" ).tqarg( i + 1 ); + entry = TQString( "Command%1" ).arg( i + 1 ); config->writeEntry( entry, settings->commands[i].command ); - entry = TQString( "MenuText%1" ).tqarg( i + 1 ); + entry = TQString( "MenuText%1" ).arg( i + 1 ); config->writeEntry( entry, settings->commands[i].menuText ); } } diff --git a/src/kcm/configdlg.ui b/src/kcm/configdlg.ui index 31a8129..a9fa86f 100644 --- a/src/kcm/configdlg.ui +++ b/src/kcm/configdlg.ui @@ -763,7 +763,7 @@ of wireless devices not in the tooltips of standard interfaces.</b></strin <property name="text"> <string>Description:</string> </property> - <property name="tqalignment"> + <property name="alignment"> <set>AlignTop</set> </property> </widget> @@ -774,7 +774,7 @@ of wireless devices not in the tooltips of standard interfaces.</b></strin <property name="text"> <string></string> </property> - <property name="tqalignment"> + <property name="alignment"> <set>WordBreak|AlignVCenter</set> </property> </widget> |