~ubuntu-branches/ubuntu/wily/fqterm/wily

« back to all changes in this revision

Viewing changes to src/common/fqterm_path.cpp

  • Committer: Bazaar Package Importer
  • Author(s): LI Daobing
  • Date: 2010-03-21 22:22:34 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100321222234-x9cl852sd6ghcg7f
Tags: 0.9.6.8-1
* new upstream release.
* debian/control: bump standards version to 3.8.4.

Show diffs side-by-side

added added

removed removed

Lines of Context:
319
319
  strTmp = pConf->getItemValue(strSection, "retrytimes");
320
320
  param.retryTimes_ = strTmp.toInt();
321
321
 
 
322
  strTmp = pConf->getItemValue(strSection, "autoclosewin");
 
323
  param.isAutoCloseWin_ = (strTmp == "1");
 
324
 
322
325
  strTmp = pConf->getItemValue(strSection, "alignmode");
323
326
  param.alignMode_ = strTmp.toInt();
324
327
 
441
444
  pConf->setItemValue(strSection, "interval", strTmp);
442
445
  strTmp.setNum(param.retryTimes_);
443
446
  pConf->setItemValue(strSection, "retrytimes", strTmp);
 
447
  pConf->setItemValue(strSection, "autoclosewin", param.isAutoCloseWin_? "1" : "0");
444
448
 
445
449
  pConf->setItemValue(strSection, "loadscript", param.isAutoLoadScript_ ? "1" : "0");
446
450
  pConf->setItemValue(strSection, "scriptfile", param.autoLoadedScriptFileName_);