From 3d60e28ce573bfd28286d108eeb43ec29bf44d48 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Mon, 16 Sep 2013 14:27:58 +0000 Subject: removed not needed _MSC_VER checks removed double comstant from modern warning fix git-svn-id: http://svn.miranda-ng.org/main/trunk@6087 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SmileyAdd/src/general.cpp | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'plugins/SmileyAdd/src/general.cpp') diff --git a/plugins/SmileyAdd/src/general.cpp b/plugins/SmileyAdd/src/general.cpp index ad11e50420..18cc673032 100644 --- a/plugins/SmileyAdd/src/general.cpp +++ b/plugins/SmileyAdd/src/general.cpp @@ -211,22 +211,18 @@ bool InitGdiPlus(void) static const TCHAR errmsg[] = _T("GDI+ not installed.\n") _T("GDI+ can be downloaded here: http://www.microsoft.com/downloads"); -#ifdef _MSC_VER __try -#endif { if (g_gdiplusToken == 0 && !gdiPlusFail) { Gdiplus::GdiplusStartup(&g_gdiplusToken, &gdiplusStartupInput, NULL); } } -#ifdef _MSC_VER __except ( EXCEPTION_EXECUTE_HANDLER ) { gdiPlusFail = true; ReportError(errmsg); } -#endif return !gdiPlusFail; } @@ -236,13 +232,7 @@ void DestroyGdiPlus(void) if (g_gdiplusToken != 0) { Gdiplus::GdiplusShutdown(g_gdiplusToken); -#ifdef _MSC_VER -#if 1200 < _MSC_VER __FUnloadDelayLoadedDLL2("gdiplus.dll"); -#else - __FUnloadDelayLoadedDLL("gdiplus.dll"); -#endif -#endif g_gdiplusToken = 0; } } -- cgit v1.2.3