summaryrefslogtreecommitdiff
authorzecke <zecke>2002-03-22 23:03:44 (UTC)
committer zecke <zecke>2002-03-22 23:03:44 (UTC)
commit232a5bed633ba2aa96fcab73ff991ab3a796ad76 (patch) (side-by-side diff)
tree91bf3f7eec1ff69f62b3e7f700c9b2c4a968f24b
parentf0add730524cb63fd3bcce741da2e1fba83acb9f (diff)
downloadopie-232a5bed633ba2aa96fcab73ff991ab3a796ad76.zip
opie-232a5bed633ba2aa96fcab73ff991ab3a796ad76.tar.gz
opie-232a5bed633ba2aa96fcab73ff991ab3a796ad76.tar.bz2
make some people happy
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/mediummountgui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/launcher/mediummountgui.cpp b/core/launcher/mediummountgui.cpp
index 6ad97e1..5225711 100644
--- a/core/launcher/mediummountgui.cpp
+++ b/core/launcher/mediummountgui.cpp
@@ -30,39 +30,39 @@ MediumMountGui::MediumMountGui( const QString &path ,QWidget* parent, const cha
resize( w , h );
setCaption( tr( "Medium inserted" ) );
mediumPath = path;
readConfig();
startGui();
}
void MediumMountGui::readConfig(){
OConfig cfg (mediumPath +"/.opiestorage.cf");
cfg.setGroup("main");
- checkagain = cfg.readBoolEntry("check", true);
+ checkagain = cfg.readBoolEntry("check", false);
cfg.setGroup("mimetypes");
checkmimeaudio = cfg.readBoolEntry("audio", true);
checkmimeimage = cfg.readBoolEntry("image", true);
checkmimetext = cfg.readBoolEntry("text", true);
checkmimevideo = cfg.readBoolEntry("video", true);
checkmimeall = cfg.readBoolEntry("all", true);
cfg.setGroup("dirs");
limittodirs = cfg.readEntry("dirs", "");
}
bool MediumMountGui::check() {
- return checkagain;
+ return !checkagain;
}
QStringList MediumMountGui::dirs() {
QStringList list = QStringList::split(",", limittodirs );
return list;
}
void MediumMountGui::writeConfig(bool autocheck) {
OConfig cfg (mediumPath +"/.opiestorage.cf");
cfg.setGroup("main");
cfg.writeEntry("check", AskBox->isChecked() );