From a9e1d50df4f4ce5ad1dbc74b49fc1c0f7b073a15 Mon Sep 17 00:00:00 2001 From: gregory guy Date: Tue, 13 Jul 2021 20:00:38 +0200 Subject: Change default backend from Nettools to Sys. Some indentation cosmetic. Signed-off-by: gregory guy --- src/kcm/configdialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kcm/configdialog.cpp') diff --git a/src/kcm/configdialog.cpp b/src/kcm/configdialog.cpp index 3118ce6..589c65e 100644 --- a/src/kcm/configdialog.cpp +++ b/src/kcm/configdialog.cpp @@ -269,7 +269,7 @@ void ConfigDialog::load() // select the backend from the config file bool foundBackend = false; - TQString backend = config->readEntry( "Backend", "Nettools" ); + TQString backend = config->readEntry( "Backend", "Sys" ); int i; for ( i = 0; KCMRegistry[i].name != TQString(); i++ ) { @@ -282,7 +282,7 @@ void ConfigDialog::load() if ( !foundBackend ) { - i = 0; // use the first backend (Nettools) + i = 0; // use the first backend (Sys) } mDlg->comboBoxBackends->setCurrentItem( i ); mDlg->textLabelBackendDescription->setText( KCMRegistry[i].description ); -- cgit v1.2.1