summaryrefslogtreecommitdiffstats
path: root/src/kcm
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2021-07-13 20:00:38 +0200
committerMichele Calgaro <michele.calgaro@yahoo.it>2021-07-16 14:24:52 +0900
commite39ba61ccfbabebbdefc998f34358e7ec60efe06 (patch)
treed49a193fad0f7b1f77da0abdb93696aac460b51a /src/kcm
parent53d1da8b55ce7ab68d5e0033bf3efe8dae6997ee (diff)
downloadknemo-e39ba61ccfbabebbdefc998f34358e7ec60efe06.tar.gz
knemo-e39ba61ccfbabebbdefc998f34358e7ec60efe06.zip
Change default backend from Nettools to Sys.
Some indentation cosmetic. Signed-off-by: gregory guy <gregory-tde@laposte.net> (cherry picked from commit a9e1d50df4f4ce5ad1dbc74b49fc1c0f7b073a15)
Diffstat (limited to 'src/kcm')
-rw-r--r--src/kcm/configdialog.cpp4
1 files changed, 2 insertions, 2 deletions
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 );