diff options
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>
|