From 09c844dbf402d76f58b01397e850bd5c17c0535b Mon Sep 17 00:00:00 2001 From: imm Date: Sun, 01 Sep 2002 14:34:26 +0000 Subject: config fix --- (limited to 'noncore/comm/keypebble/krfboptions.cpp') diff --git a/noncore/comm/keypebble/krfboptions.cpp b/noncore/comm/keypebble/krfboptions.cpp index 9daf3f0..8c4320b 100644 --- a/noncore/comm/keypebble/krfboptions.cpp +++ b/noncore/comm/keypebble/krfboptions.cpp @@ -4,38 +4,42 @@ KRFBOptions::KRFBOptions() { - Config config( "keypebble" ); - readSettings( &config ); + readSettings(); } KRFBOptions::~KRFBOptions() { - Config config( "keypebble" ); - writeSettings( &config ); + writeSettings(); } -void KRFBOptions::readSettings( Config *config ) +void KRFBOptions::readSettings() { - hexTile = config->readBoolEntry( "HexTile" ); - corre = config->readBoolEntry( "CORRE" ); - rre = config->readBoolEntry( "RRE" ); - copyrect = config->readBoolEntry( "CopyRect", true ); - colors256 = config->readBoolEntry( "Colors256" ); - shared = config->readBoolEntry( "Shared" ); - readOnly = config->readBoolEntry( "ReadOnly" ); - updateRate = config->readNumEntry( "UpdateRate", 50 ); + Config config( "keypebble" ); + config.setGroup("Settings"); + hexTile = config.readBoolEntry( "HexTile", 0 ); + corre = config.readBoolEntry( "CORRE", 0 ); + rre = config.readBoolEntry( "RRE", 0 ); + copyrect = config.readBoolEntry( "CopyRect", 1 ); + colors256 = config.readBoolEntry( "Colors256", 0 ); + shared = config.readBoolEntry( "Shared", 0 ); + readOnly = config.readBoolEntry( "ReadOnly", 0 ); + updateRate = config.readNumEntry( "UpdateRate", 50 ); + deIconify = config.readBoolEntry( "DeIconify", 0 ); } -void KRFBOptions::writeSettings( Config *config ) +void KRFBOptions::writeSettings() { - config->writeEntry( "HexTile", hexTile ); - config->writeEntry( "CORRE", corre ); - config->writeEntry( "RRE", rre ); - config->writeEntry( "CopyRect", copyrect ); - config->writeEntry( "Colors256", colors256 ); - config->writeEntry( "Shared", shared ); - config->writeEntry( "ReadOnly", readOnly ); - config->writeEntry( "UpdateRate", updateRate ); + Config config( "keypebble" ); + config.setGroup("Settings"); + config.writeEntry( "HexTile", hexTile ); + config.writeEntry( "CORRE", corre ); + config.writeEntry( "RRE", rre ); + config.writeEntry( "CopyRect", copyrect ); + config.writeEntry( "Colors256", colors256 ); + config.writeEntry( "Shared", shared ); + config.writeEntry( "ReadOnly", readOnly ); + config.writeEntry( "UpdateRate", updateRate ); + config.writeEntry( "DeIconify", deIconify ); } int KRFBOptions::encodings() -- cgit v0.9.0.2