diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-26 12:33:08 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-26 12:33:08 +0000 |
commit | 4a966be3c32e745b2567e51c27766942f798f77d (patch) | |
tree | 82f066d0b5d6d3e90350382101810cb6f8da0677 /plugins/SimpleAR/src | |
parent | fffcd98b6f25af8d7a7895302e3b1ff64344d526 (diff) |
common projects
git-svn-id: http://svn.miranda-ng.org/main/trunk@14724 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SimpleAR/src')
-rw-r--r-- | plugins/SimpleAR/src/Main.cpp | 2 | ||||
-rw-r--r-- | plugins/SimpleAR/src/Options.cpp | 2 | ||||
-rw-r--r-- | plugins/SimpleAR/src/stdafx.cxx (renamed from plugins/SimpleAR/src/stdafx.cpp) | 2 | ||||
-rw-r--r-- | plugins/SimpleAR/src/stdafx.h (renamed from plugins/SimpleAR/src/Common.h) | 2 |
4 files changed, 3 insertions, 5 deletions
diff --git a/plugins/SimpleAR/src/Main.cpp b/plugins/SimpleAR/src/Main.cpp index 196fc1b722..569eff1d9f 100644 --- a/plugins/SimpleAR/src/Main.cpp +++ b/plugins/SimpleAR/src/Main.cpp @@ -14,7 +14,7 @@ Miranda ICQ: the free icq client for MS Windows Copyright (C) 2000-2 Richard Hughes, Roland Rabien & Tristan Van de Vreede
*/
-#include "Common.h"
+#include "stdafx.h"
CLIST_INTERFACE *pcli;
HINSTANCE hinstance;
diff --git a/plugins/SimpleAR/src/Options.cpp b/plugins/SimpleAR/src/Options.cpp index 81e896d3d9..23c41e10ca 100644 --- a/plugins/SimpleAR/src/Options.cpp +++ b/plugins/SimpleAR/src/Options.cpp @@ -1,4 +1,4 @@ -#include "Common.h"
+#include "stdafx.h"
TCHAR* ptszMessage[6]={0};
INT lastIndex=-1;
diff --git a/plugins/SimpleAR/src/stdafx.cpp b/plugins/SimpleAR/src/stdafx.cxx index c5fe5abaad..6fb37564b7 100644 --- a/plugins/SimpleAR/src/stdafx.cpp +++ b/plugins/SimpleAR/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 "common.h"
\ No newline at end of file +#include "stdafx.h"
\ No newline at end of file diff --git a/plugins/SimpleAR/src/Common.h b/plugins/SimpleAR/src/stdafx.h index 3e92e6867d..99e944ebe6 100644 --- a/plugins/SimpleAR/src/Common.h +++ b/plugins/SimpleAR/src/stdafx.h @@ -1,5 +1,3 @@ -#define _CRT_SECURE_NO_WARNINGS
-
#include <windows.h>
#include <time.h>
|