diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-08-01 20:02:55 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-08-01 20:02:55 +0000 |
commit | f53a75f066d707860fd9517c5a640711884ff859 (patch) | |
tree | 9904913bdf32fbf426c7d8afd2624cb44b20417d /plugins/UserGuide/src | |
parent | c16b6082563b8b18fe02ce0721bf184aecd7127a (diff) |
UserGuide: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14794 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserGuide/src')
-rw-r--r-- | plugins/UserGuide/src/main.cpp | 2 | ||||
-rw-r--r-- | plugins/UserGuide/src/stdafx.cxx (renamed from plugins/UserGuide/src/stdafx.cpp) | 2 | ||||
-rw-r--r-- | plugins/UserGuide/src/stdafx.h (renamed from plugins/UserGuide/src/commonheaders.h) | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/plugins/UserGuide/src/main.cpp b/plugins/UserGuide/src/main.cpp index e739a54017..d07a3fd80b 100644 --- a/plugins/UserGuide/src/main.cpp +++ b/plugins/UserGuide/src/main.cpp @@ -1,4 +1,4 @@ -#include "commonheaders.h"
+#include "stdafx.h"
HINSTANCE hInst;
diff --git a/plugins/UserGuide/src/stdafx.cpp b/plugins/UserGuide/src/stdafx.cxx index 048b14e9d2..6fb37564b7 100644 --- a/plugins/UserGuide/src/stdafx.cpp +++ b/plugins/UserGuide/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 "commonheaders.h"
\ No newline at end of file +#include "stdafx.h"
\ No newline at end of file diff --git a/plugins/UserGuide/src/commonheaders.h b/plugins/UserGuide/src/stdafx.h index 341ac9537d..19db41b397 100644 --- a/plugins/UserGuide/src/commonheaders.h +++ b/plugins/UserGuide/src/stdafx.h @@ -1,5 +1,3 @@ -#define _CRT_SECURE_NO_WARNINGS
-
#include <windows.h>
#include <newpluginapi.h>
|