| 672 | } |
| 673 | |
| 674 | CString WizFormatString5(const CString& strFormat, const CString& strParam1, const CString& strParam2, const CString& strParam3, const CString& strParam4, const CString& strParam5) |
| 675 | { |
| 676 | CString str(strFormat); |
| 677 | str.replace("%1", strParam1); |
| 678 | str.replace("%2", strParam2); |
| 679 | str.replace("%3", strParam3); |
| 680 | str.replace("%4", strParam4); |
| 681 | str.replace("%5", strParam5); |
| 682 | return str; |
| 683 | } |
| 684 | |
| 685 | CString WizFormatString6(const CString& strFormat, const CString& strParam1, const CString& strParam2, const CString& strParam3, const CString& strParam4, const CString& strParam5, const CString& strParam6) |
| 686 | { |
no outgoing calls
no test coverage detected