diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-08-01 20:08:37 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-08-01 20:08:37 +0000 |
commit | e3c362ffaf05002b55b37941250906069ef27100 (patch) | |
tree | 2894842490c845fc300d9a158fa91100046026c4 /plugins | |
parent | befbbe3b75cf8001b40fc5fa06d66f1d5b9614da (diff) |
SpellChecker: "Flags.dll" name changed to "Flags_icons.dll"
git-svn-id: http://svn.miranda-ng.org/main/trunk@1310 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/SpellChecker/flags-angelika.vcxproj | 2 | ||||
-rw-r--r-- | plugins/SpellChecker/spellchecker_flags.vcxproj | 2 | ||||
-rw-r--r-- | plugins/SpellChecker/src/spellchecker.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/SpellChecker/flags-angelika.vcxproj b/plugins/SpellChecker/flags-angelika.vcxproj index 46c26d0fa3..9db6fea3e6 100644 --- a/plugins/SpellChecker/flags-angelika.vcxproj +++ b/plugins/SpellChecker/flags-angelika.vcxproj @@ -66,7 +66,7 @@ <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\Obj\$(ProjectName)\</IntDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\</IntDir>
<IgnoreImportLibrary>true</IgnoreImportLibrary>
- <TargetName>Flags</TargetName>
+ <TargetName>Flags_icons</TargetName>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ResourceCompile>
diff --git a/plugins/SpellChecker/spellchecker_flags.vcxproj b/plugins/SpellChecker/spellchecker_flags.vcxproj index 6c6e373743..80784320d3 100644 --- a/plugins/SpellChecker/spellchecker_flags.vcxproj +++ b/plugins/SpellChecker/spellchecker_flags.vcxproj @@ -66,7 +66,7 @@ <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\Obj\$(ProjectName)\</IntDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\</IntDir>
<IgnoreImportLibrary>true</IgnoreImportLibrary>
- <TargetName>Flags</TargetName>
+ <TargetName>Flags_icons</TargetName>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Link>
diff --git a/plugins/SpellChecker/src/spellchecker.cpp b/plugins/SpellChecker/src/spellchecker.cpp index afbf7485a5..014214de10 100644 --- a/plugins/SpellChecker/src/spellchecker.cpp +++ b/plugins/SpellChecker/src/spellchecker.cpp @@ -230,7 +230,7 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) { // Load flags dll TCHAR flag_file[1024]; - mir_sntprintf(flag_file, SIZEOF(flag_file), _T("%s\\flags.dll"), flagsDllFolder); + mir_sntprintf(flag_file, SIZEOF(flag_file), _T("%s\\flags_icons.dll"), flagsDllFolder); HMODULE hFlagsDll = LoadLibraryEx(flag_file, NULL, LOAD_LIBRARY_AS_DATAFILE); sid.flags = SIDF_ALL_TCHAR | SIDF_SORTED; |