summaryrefslogtreecommitdiffstats
path: root/src/kcm/configdialog.cpp
diff options
context:
space:
mode:
authorgregory guy <[email protected]>2021-07-13 20:00:38 +0200
committergregory guy <[email protected]>2021-07-15 17:30:06 +0200
commita9e1d50df4f4ce5ad1dbc74b49fc1c0f7b073a15 (patch)
tree91ee3d4291eb52ee7f1d820187046a864bc2576f /src/kcm/configdialog.cpp
parent3813914451b56d52a7e1e2d3ea76e6fefcdf438b (diff)
downloadknemo-a9e1d50df4f4ce5ad1dbc74b49fc1c0f7b073a15.tar.gz
knemo-a9e1d50df4f4ce5ad1dbc74b49fc1c0f7b073a15.zip
Change default backend from Nettools to Sys.
Some indentation cosmetic. Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'src/kcm/configdialog.cpp')
-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 );