diff options
author | George Hazan <george.hazan@gmail.com> | 2015-08-11 16:02:24 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-08-11 16:02:24 +0000 |
commit | 70a6a0e2e744b142f2cfde25c8add33c1f95dc29 (patch) | |
tree | 8fb22a7c47db65b89cbfa11619db550dd95d4fd3 /plugins | |
parent | 2548065ebc5da2a8778cd4f49343b847773ee174 (diff) |
more warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@14914 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/FTPFileYM/ftpfile.vcxproj | 1 | ||||
-rw-r--r-- | plugins/Msg_Export/msg_export.vcxproj | 5 | ||||
-rw-r--r-- | plugins/NotifyAnything/NotifyAnything.vcxproj | 5 | ||||
-rw-r--r-- | plugins/RecentContacts/RecentContacts.vcxproj | 5 | ||||
-rw-r--r-- | plugins/SendScreenshotPlus/SendSS.vcxproj | 5 | ||||
-rw-r--r-- | plugins/WinterSpeak/WinterSpeak.vcxproj | 3 | ||||
-rw-r--r-- | plugins/YAMN/YAMN.vcxproj | 5 |
7 files changed, 29 insertions, 0 deletions
diff --git a/plugins/FTPFileYM/ftpfile.vcxproj b/plugins/FTPFileYM/ftpfile.vcxproj index d5b530b582..e1e6250c01 100644 --- a/plugins/FTPFileYM/ftpfile.vcxproj +++ b/plugins/FTPFileYM/ftpfile.vcxproj @@ -37,6 +37,7 @@ </ItemGroup>
<ItemDefinitionGroup>
<ClCompile>
+ <ExceptionHandling>Sync</ExceptionHandling>
<AdditionalIncludeDirectories>..\..\libs\libcurl\include\curl\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<Link>
diff --git a/plugins/Msg_Export/msg_export.vcxproj b/plugins/Msg_Export/msg_export.vcxproj index 7e73a71330..7aa6599dc4 100644 --- a/plugins/Msg_Export/msg_export.vcxproj +++ b/plugins/Msg_Export/msg_export.vcxproj @@ -25,4 +25,9 @@ <ImportGroup Label="PropertySheets">
<Import Project="$(ProjectDir)..\..\build\vc.common\plugin.props" />
</ImportGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+ <ExceptionHandling>Sync</ExceptionHandling>
+ </ClCompile>
+ </ItemDefinitionGroup>
</Project>
\ No newline at end of file diff --git a/plugins/NotifyAnything/NotifyAnything.vcxproj b/plugins/NotifyAnything/NotifyAnything.vcxproj index 89341aebd6..5ff99216cb 100644 --- a/plugins/NotifyAnything/NotifyAnything.vcxproj +++ b/plugins/NotifyAnything/NotifyAnything.vcxproj @@ -25,4 +25,9 @@ <ImportGroup Label="PropertySheets">
<Import Project="$(ProjectDir)..\..\build\vc.common\plugin.props" />
</ImportGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+ <ExceptionHandling>Sync</ExceptionHandling>
+ </ClCompile>
+ </ItemDefinitionGroup>
</Project>
\ No newline at end of file diff --git a/plugins/RecentContacts/RecentContacts.vcxproj b/plugins/RecentContacts/RecentContacts.vcxproj index 74d8195d1d..12dc45ea5b 100644 --- a/plugins/RecentContacts/RecentContacts.vcxproj +++ b/plugins/RecentContacts/RecentContacts.vcxproj @@ -25,4 +25,9 @@ <ImportGroup Label="PropertySheets">
<Import Project="$(ProjectDir)..\..\build\vc.common\plugin.props" />
</ImportGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+ <ExceptionHandling>Sync</ExceptionHandling>
+ </ClCompile>
+ </ItemDefinitionGroup>
</Project>
\ No newline at end of file diff --git a/plugins/SendScreenshotPlus/SendSS.vcxproj b/plugins/SendScreenshotPlus/SendSS.vcxproj index 41c5f28c32..888122204d 100644 --- a/plugins/SendScreenshotPlus/SendSS.vcxproj +++ b/plugins/SendScreenshotPlus/SendSS.vcxproj @@ -25,4 +25,9 @@ <ImportGroup Label="PropertySheets">
<Import Project="$(ProjectDir)..\..\build\vc.common\plugin.props" />
</ImportGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+ <ExceptionHandling>Sync</ExceptionHandling>
+ </ClCompile>
+ </ItemDefinitionGroup>
</Project>
\ No newline at end of file diff --git a/plugins/WinterSpeak/WinterSpeak.vcxproj b/plugins/WinterSpeak/WinterSpeak.vcxproj index 632327d8a1..2a074c346b 100644 --- a/plugins/WinterSpeak/WinterSpeak.vcxproj +++ b/plugins/WinterSpeak/WinterSpeak.vcxproj @@ -26,6 +26,9 @@ <Import Project="$(ProjectDir)..\..\build\vc.common\plugin.props" />
</ImportGroup>
<ItemDefinitionGroup>
+ <ClCompile>
+ <ExceptionHandling>Sync</ExceptionHandling>
+ </ClCompile>
<Link>
<AdditionalDependencies>spchwrap.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>src\SAPI 4.0\Lib;$(CommonLibDir)</AdditionalLibraryDirectories>
diff --git a/plugins/YAMN/YAMN.vcxproj b/plugins/YAMN/YAMN.vcxproj index cb1c0191da..e564e8e96c 100644 --- a/plugins/YAMN/YAMN.vcxproj +++ b/plugins/YAMN/YAMN.vcxproj @@ -25,6 +25,11 @@ <ImportGroup Label="PropertySheets">
<Import Project="$(ProjectDir)..\..\build\vc.common\plugin.props" />
</ImportGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+ <ExceptionHandling>Sync</ExceptionHandling>
+ </ClCompile>
+ </ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="src\browser\*.cpp">
<PrecompiledHeaderFile>..\stdafx.h</PrecompiledHeaderFile>
|