diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-03 21:34:24 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-03 21:34:24 +0000 |
commit | 4e59ef5b6f75b04eb53f3dc7117dcaddf441f04e (patch) | |
tree | 23ba4f180287ca66042c1d90c06d0816b4b99165 /src/modules/langpack | |
parent | 44c5b35ef4f84a227a78bdee220809460f9314ba (diff) |
lMuuids delenda est
git-svn-id: http://svn.miranda-ng.org/main/trunk@292 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/langpack')
-rw-r--r-- | src/modules/langpack/langpack.cpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/modules/langpack/langpack.cpp b/src/modules/langpack/langpack.cpp index 01dd16365d..cec6511386 100644 --- a/src/modules/langpack/langpack.cpp +++ b/src/modules/langpack/langpack.cpp @@ -537,16 +537,14 @@ int LoadLangPackModule(void) return 0;
}
-void UnloadLangPackModule(bool bRemoveAll)
+void UnloadLangPackModule()
{
if ( !bModuleInitialized ) return;
int i;
- if ( bRemoveAll ) {
- for ( i=0; i < lMuuids.getCount(); i++ )
- mir_free( lMuuids[i] );
- lMuuids.destroy();
- }
+ for ( i=0; i < lMuuids.getCount(); i++ )
+ mir_free( lMuuids[i] );
+ lMuuids.destroy();
LangPackEntry* p = langPack.entry;
for ( i=0; i < langPack.entryCount; i++, p++ ) {
@@ -576,7 +574,7 @@ INT_PTR ReloadLangpack(WPARAM wParam, LPARAM lParam) if ( pszStr == NULL )
pszStr = langPack.filename;
- UnloadLangPackModule(false);
+ UnloadLangPackModule();
LoadLangPack(pszStr);
return 0;
}
|