From: <hep...@us...> - 2009-10-19 18:58:11
|
Revision: 988 http://qterm.svn.sourceforge.net/qterm/?rev=988&view=rev Author: hephooey Date: 2009-10-19 18:58:00 +0000 (Mon, 19 Oct 2009) Log Message: ----------- Save the keyboard profile Modified Paths: -------------- trunk/qterm-qt4/src/qtermglobal.cpp Modified: trunk/qterm-qt4/src/qtermglobal.cpp =================================================================== --- trunk/qterm-qt4/src/qtermglobal.cpp 2009-10-19 18:16:46 UTC (rev 987) +++ trunk/qterm-qt4/src/qtermglobal.cpp 2009-10-19 18:58:00 UTC (rev 988) @@ -191,6 +191,7 @@ strTmp = m_address->getItemValue(strSection, "fontsize").toString(); param.m_nFontSize = strTmp.toInt(); param.m_strSchemeFile = m_address->getItemValue(strSection, "schemefile").toString(); + param.m_strKeyboardProfile = m_address->getItemValue(strSection, "keyboardprofile").toString(); param.m_strTerm = m_address->getItemValue(strSection, "termtype").toString(); strTmp = m_address->getItemValue(strSection, "keytype").toString(); @@ -288,6 +289,7 @@ strTmp.setNum(param.m_nFontSize); m_address->setItemValue(strSection, "fontsize", strTmp); m_address->setItemValue(strSection, "schemefile", param.m_strSchemeFile); + m_address->setItemValue(strSection, "keyboardprofile", param.m_strKeyboardProfile); m_address->setItemValue(strSection, "termtype", param.m_strTerm); strTmp.setNum(param.m_nKey); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |