| 1726 | } |
| 1727 | |
| 1728 | CString CMergeApp::GetProfileString(const tchar_t* lpszSection, const tchar_t* lpszEntry, const tchar_t* lpszDefault) |
| 1729 | { |
| 1730 | COptionsMgr *pOptions = GetOptionsMgr(); |
| 1731 | String name = strutils::format(_T("%s/%s"), lpszSection, lpszEntry); |
| 1732 | if (!pOptions->Get(name).IsString()) |
| 1733 | pOptions->InitOption(name, lpszDefault ? lpszDefault : _T("")); |
| 1734 | return pOptions->GetString(name).c_str(); |
| 1735 | } |
| 1736 | |
| 1737 | BOOL CMergeApp::WriteProfileString(const tchar_t* lpszSection, const tchar_t* lpszEntry, const tchar_t* lpszValue) |
| 1738 | { |
no test coverage detected