diff options
| author | nyamatongwe <devnull@localhost> | 2007-03-11 22:46:42 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2007-03-11 22:46:42 +0000 |
| commit | a4db6bc2b3d19844b1a2a4d39badd87998ab07a2 (patch) | |
| tree | 37bbf310c5c1fd80c8f070a11561a8e61c9d0d72 | |
| parent | ae587e57e80a558b892a95da60c6ee067ed3e09b (diff) | |
| download | scintilla-mirror-a4db6bc2b3d19844b1a2a4d39badd87998ab07a2.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")); } |
