summaryrefslogtreecommitdiff
path: root/plugins/Msg_Export/src
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-07-25 19:12:09 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-07-25 19:12:09 +0000
commita8e117528d873b0129e832cd6f7f23b4b8a6c3ea (patch)
tree4007e8e3071f6f2199d89bf4021c571cfbfab67a /plugins/Msg_Export/src
parent374135f479c2bae29f9f1c8883319de6049ba02f (diff)
msg_export: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14700 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Msg_Export/src')
-rwxr-xr-xplugins/Msg_Export/src/FileViewer.cpp2
-rwxr-xr-xplugins/Msg_Export/src/main.cpp2
-rwxr-xr-xplugins/Msg_Export/src/options.cpp2
-rw-r--r--plugins/Msg_Export/src/stdafx.cxx (renamed from plugins/Msg_Export/src/stdafx.cpp)2
-rwxr-xr-xplugins/Msg_Export/src/stdafx.h (renamed from plugins/Msg_Export/src/Glob.h)2
-rwxr-xr-xplugins/Msg_Export/src/utils.cpp2
6 files changed, 5 insertions, 7 deletions
diff --git a/plugins/Msg_Export/src/FileViewer.cpp b/plugins/Msg_Export/src/FileViewer.cpp
index b5027a7506..75341df4f6 100755
--- a/plugins/Msg_Export/src/FileViewer.cpp
+++ b/plugins/Msg_Export/src/FileViewer.cpp
@@ -16,7 +16,7 @@
//along with this program; if not, write to the Free Software
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-#include "Glob.h"
+#include "stdafx.h"
static UINT UM_FIND_CMD = RegisterWindowMessage(FINDMSGSTRING);
diff --git a/plugins/Msg_Export/src/main.cpp b/plugins/Msg_Export/src/main.cpp
index 9a5abd1248..ed19d2c7c5 100755
--- a/plugins/Msg_Export/src/main.cpp
+++ b/plugins/Msg_Export/src/main.cpp
@@ -16,7 +16,7 @@
//along with this program; if not, write to the Free Software
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-#include "Glob.h"
+#include "stdafx.h"
CLIST_INTERFACE *pcli;
HINSTANCE hInstance = NULL;
diff --git a/plugins/Msg_Export/src/options.cpp b/plugins/Msg_Export/src/options.cpp
index dd6ebaae35..3a46bc8617 100755
--- a/plugins/Msg_Export/src/options.cpp
+++ b/plugins/Msg_Export/src/options.cpp
@@ -16,7 +16,7 @@
//along with this program; if not, write to the Free Software
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-#include "Glob.h"
+#include "stdafx.h"
#define STRINGIZE(x) #x
#define EVAL_STRINGIZE(x) STRINGIZE(x)
diff --git a/plugins/Msg_Export/src/stdafx.cpp b/plugins/Msg_Export/src/stdafx.cxx
index edfaf34cef..6fb37564b7 100644
--- a/plugins/Msg_Export/src/stdafx.cpp
+++ b/plugins/Msg_Export/src/stdafx.cxx
@@ -15,4 +15,4 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "Glob.h" \ No newline at end of file
+#include "stdafx.h" \ No newline at end of file
diff --git a/plugins/Msg_Export/src/Glob.h b/plugins/Msg_Export/src/stdafx.h
index 3d21adb29e..88a0a36c5e 100755
--- a/plugins/Msg_Export/src/Glob.h
+++ b/plugins/Msg_Export/src/stdafx.h
@@ -19,8 +19,6 @@
#ifndef MSG_EXP_GLOB_H
#define MSG_EXP_GLOB_H
-#define _CRT_SECURE_NO_WARNINGS
-
#include <Windows.h>
#include <windowsx.h>
#include <Richedit.h>
diff --git a/plugins/Msg_Export/src/utils.cpp b/plugins/Msg_Export/src/utils.cpp
index 56e178cb03..26a012403f 100755
--- a/plugins/Msg_Export/src/utils.cpp
+++ b/plugins/Msg_Export/src/utils.cpp
@@ -16,7 +16,7 @@
//along with this program; if not, write to the Free Software
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-#include "Glob.h"
+#include "stdafx.h"
// Default error string used upon errors
const TCHAR *pszNickError = LPGENT("No_Nick");