diff options
author | nyamatongwe <unknown> | 2007-03-11 22:46:42 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-03-11 22:46:42 +0000 |
commit | 0b60062b249085d17bf49932ab4656eb8ea19094 (patch) | |
tree | 37bbf310c5c1fd80c8f070a11561a8e61c9d0d72 | |
parent | c90fc497844db8ceb43f334cae8680c26e1fced2 (diff) | |
download | scintilla-mirror-0b60062b249085d17bf49932ab4656eb8ea19094.tar.gz |
Fixed comment.
-rw-r--r-- | win32/PlatWin.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 71114c27c..b2cc554bb 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -2163,8 +2163,8 @@ void Platform_Initialise(void *hInstance) { onNT = osv.dwPlatformId == VER_PLATFORM_WIN32_NT; ::InitializeCriticalSection(&crPlatformLock); hinstPlatformRes = reinterpret_cast<HINSTANCE>(hInstance); - // This may be called from DllMain, in which case the call to LoadLibrary and - // FreeLibrary in Platform_Finalise are bad because they can upset the DLL load order. + // This may be called from DllMain, in which case the call to LoadLibrary + // is bad because it can upset the DLL load order. if (!hDLLImage) { hDLLImage = ::LoadLibrary(TEXT("Msimg32")); } |