Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/PluginClassThread.cpp

Issue 10783032: Pass browser locale to the JS code (Closed)
Patch Set: Fixed review comments Created June 4, 2013, 11:25 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/plugin/PluginClass.cpp ('k') | src/shared/Version.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/plugin/PluginClassThread.cpp
===================================================================
--- a/src/plugin/PluginClassThread.cpp
+++ b/src/plugin/PluginClassThread.cpp
@@ -157,17 +157,17 @@ DWORD WINAPI CPluginClass::MainThreadPro
{
CString updateVersion = settings->GetString(SETTING_PLUGIN_UPDATE_VERSION);
DEBUG_GENERAL(L"*** Displaying update plugin dialog for version " + updateVersion);
// Show update dialog
CUpdateDialog uDlg;
- uDlg.SetVersions(updateVersion, _T(IEPLUGIN_VERSION));
+ uDlg.SetVersions(updateVersion, IEPLUGIN_VERSION);
if (uDlg.DoModal(::GetDesktopWindow()) == IDOK)
{
s_isPluginToBeUpdated = true;
}
settings->SetValue(SETTING_PLUGIN_UPDATE_TIME, (int)today);
settings->Write();
« no previous file with comments | « src/plugin/PluginClass.cpp ('k') | src/shared/Version.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld