--- a/secureswitools/swisistools/source/interpretsis/commandparser.cpp Thu Jul 15 18:47:04 2010 +0300
+++ b/secureswitools/swisistools/source/interpretsis/commandparser.cpp Thu Aug 19 10:02:49 2010 +0300
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
+* Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
@@ -170,8 +170,8 @@
void CCommandParser::DisplayVersion()
{
- std::cout << "\nINTERPRETSIS " << " Version 2.1.3 ." << std::endl;
- std::cout << "Copyright (c) 2009 Symbian Software Ltd. All rights reserved.\n " << std::endl;
+ std::cout << "\nINTERPRETSIS " << " Version 2.2.0 ." << std::endl;
+ std::cout << "Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.\n " << std::endl;
}
@@ -386,7 +386,7 @@
}
default:
{
- LERROR(Utf8ToUcs2(std::string(optPtr)));
+ LERROR(string2wstring(std::string(optPtr)));
throw CCommandParser::ECmdLineUnknownOption;
}
}
@@ -447,8 +447,7 @@
while (currentPos != end)
{
currentPos = std::find(it, end, ',');
- std::wstring x;
- Utf8ToUcs2(std::string(it,(currentPos-it)), x);
+ std::wstring x = string2wstring(std::string(it,(currentPos-it)));
//aOptionsList.push_back(x);
(aParamList.*aFilePtr)(x);
@@ -475,8 +474,7 @@
while (currentPos != end)
{
currentPos = std::find(it, end, ',');
- std::wstring x;
- Utf8ToUcs2(std::string(it,(currentPos-it)), x);
+ std::wstring x = string2wstring(std::string(it,(currentPos-it)));
InstallSISFile sisFileName(x, '$', false);
aParamList.AddSISFile(sisFileName);
@@ -494,8 +492,7 @@
// As the sisfile attributes are predetermined input, therefore we can just
// parse according to the predetermined inputs.
- std::wstring fileName;
- Utf8ToUcs2(sisFileOption, fileName);
+ std::wstring fileName = string2wstring(sisFileOption);
InstallSISFile sisFileName(fileName, '$', false);