void TizenWebEngineLWE::Create(uint32_t width, uint32_t height, uint32_t argc, char** argv)
{
- for (uint32_t idx = 0; idx < argc; ++idx)
- {
- if (strstr(argv[idx], "--prefer-updated-version"))
- {
- LWE::LWE::SetVersionPreference(true);
- }
- else if(strstr(argv[idx], "--prefer-platform-version"))
- {
- LWE::LWE::SetVersionPreference(false);
- }
- }
- Create(width, height, Langset(), Timezone());
+ Create(width, height, Langset(), Timezone());
}
void TizenWebEngineLWE::Create(uint32_t width, uint32_t height, const std::string& locale, const std::string& timezoneId)
if (!LWE::LWE::IsInitialized())
{
+ LWE::LWE::SetVersionPreference(true);
std::string dataPath = DevelApplication::GetDataPath();
LWE::LWE::Initialize((dataPath + "/StarFishStorage").c_str());