author | llornkcor <llornkcor> | 2002-07-26 00:45:18 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-07-26 00:45:18 (UTC) |
commit | cf32a5b8d6886b357d0f4a6ecdc5b10f78a6a041 (patch) (side-by-side diff) | |
tree | 1761b748606385d299063ce00fc2d32baea1189d | |
parent | f3556b164b79fc2a9607681bd6bdf2a4c8522d5e (diff) | |
download | opie-cf32a5b8d6886b357d0f4a6ecdc5b10f78a6a041.zip opie-cf32a5b8d6886b357d0f4a6ecdc5b10f78a6a041.tar.gz opie-cf32a5b8d6886b357d0f4a6ecdc5b10f78a6a041.tar.bz2 |
fix size limit config
-rw-r--r-- | noncore/settings/sound/soundsettings.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp index 99fccf7..010e0af 100644 --- a/noncore/settings/sound/soundsettings.cpp +++ b/noncore/settings/sound/soundsettings.cpp @@ -72,50 +72,52 @@ SoundSettings::SoundSettings( QWidget* parent, const char* objname, WFlags fl ) QString release=name.release; if( release.find("embedix",0,TRUE) != -1) { qDebug("IS System Zaurus"); systemZaurus=TRUE; } } if(!systemZaurus) { stereoCheckBox->setChecked(TRUE); } stereoCheckBox->setEnabled(FALSE); sixteenBitCheckBox->setEnabled(FALSE); #else #endif int sRate=cfg.readNumEntry("SizeLimit", 30); qDebug("%d",sRate); if(sRate ==30) timeLimitComboBox->setCurrentItem(0); else if(sRate==20) timeLimitComboBox->setCurrentItem(1); else if(sRate == 15) timeLimitComboBox->setCurrentItem(2); else if(sRate == 10) timeLimitComboBox->setCurrentItem(3); - else + else if(sRate == 5) timeLimitComboBox->setCurrentItem(4); + else + timeLimitComboBox->setCurrentItem(5); sixteenBitCheckBox->setChecked(cfg.readNumEntry("SixteenBit", 1)); cfg.setGroup("Defaults"); keyComboBox->setCurrentItem(cfg.readNumEntry("toggleKey") ); updateStorageCombo(); connect( LocationComboBox,SIGNAL(activated(const QString &)),this,SLOT( setLocation(const QString &))); connect( keyComboBox,SIGNAL(activated(const QString &)),this,SLOT( setKeyButton(const QString &))); connect( timeLimitComboBox,SIGNAL(activated( const QString &)),this,SLOT( setSizeLimitButton(const QString &))); // connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); } void SoundSettings::updateStorageCombo() { Config config( "Vmemo" ); config.setGroup( "System" ); QString loc = config.readEntry("RecLocation","/"); int i=0; int set=0; StorageInfo storageInfo; QString sName, sPath; QStringList list; list << "Documents : "+QPEApplication::documentDir(); list << "tmp : /tmp"; |