diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-25 15:18:16 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-25 15:18:16 +0000 |
commit | 647987a27c3e12380b17dc1e18f0f8c52b8e6c51 (patch) | |
tree | 9d2a0a42a1f81b5b2d1b474697e6d15da2d1237d /plugins/ModernOpt/src | |
parent | a2e911b7ad90a143cd01eacee3f526f775b3e613 (diff) |
modernopt: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14693 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ModernOpt/src')
-rw-r--r-- | plugins/ModernOpt/src/main.cpp | 2 | ||||
-rw-r--r-- | plugins/ModernOpt/src/modernopt.cpp | 2 | ||||
-rw-r--r-- | plugins/ModernOpt/src/mopt_home.cpp | 2 | ||||
-rw-r--r-- | plugins/ModernOpt/src/mopt_ignore.cpp | 2 | ||||
-rw-r--r-- | plugins/ModernOpt/src/mopt_selector.cpp | 2 | ||||
-rw-r--r-- | plugins/ModernOpt/src/stdafx.cxx (renamed from plugins/ModernOpt/src/stdafx.cpp) | 2 | ||||
-rw-r--r-- | plugins/ModernOpt/src/stdafx.h (renamed from plugins/ModernOpt/src/commonheaders.h) | 2 |
7 files changed, 6 insertions, 8 deletions
diff --git a/plugins/ModernOpt/src/main.cpp b/plugins/ModernOpt/src/main.cpp index 52f71b7709..c482834ada 100644 --- a/plugins/ModernOpt/src/main.cpp +++ b/plugins/ModernOpt/src/main.cpp @@ -1,4 +1,4 @@ -#include "commonheaders.h"
+#include "stdafx.h"
HINSTANCE hInst;
diff --git a/plugins/ModernOpt/src/modernopt.cpp b/plugins/ModernOpt/src/modernopt.cpp index 186670df28..c4ff2702f4 100644 --- a/plugins/ModernOpt/src/modernopt.cpp +++ b/plugins/ModernOpt/src/modernopt.cpp @@ -24,7 +24,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
//#define MOPT_SAMPLE_PAGES
diff --git a/plugins/ModernOpt/src/mopt_home.cpp b/plugins/ModernOpt/src/mopt_home.cpp index e89026193f..da340420b5 100644 --- a/plugins/ModernOpt/src/mopt_home.cpp +++ b/plugins/ModernOpt/src/mopt_home.cpp @@ -24,7 +24,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
extern HMODULE hInst;
diff --git a/plugins/ModernOpt/src/mopt_ignore.cpp b/plugins/ModernOpt/src/mopt_ignore.cpp index 9f9e53efa4..0135165ebc 100644 --- a/plugins/ModernOpt/src/mopt_ignore.cpp +++ b/plugins/ModernOpt/src/mopt_ignore.cpp @@ -24,7 +24,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
static HWND g_hwndModernOptIgnore = NULL;
diff --git a/plugins/ModernOpt/src/mopt_selector.cpp b/plugins/ModernOpt/src/mopt_selector.cpp index 70d47e9239..4b4ebfbfdc 100644 --- a/plugins/ModernOpt/src/mopt_selector.cpp +++ b/plugins/ModernOpt/src/mopt_selector.cpp @@ -24,7 +24,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
static void sttApplySkin(MODERNOPTOBJECT *obj, TCHAR *fn)
{
diff --git a/plugins/ModernOpt/src/stdafx.cpp b/plugins/ModernOpt/src/stdafx.cxx index 048b14e9d2..6fb37564b7 100644 --- a/plugins/ModernOpt/src/stdafx.cpp +++ b/plugins/ModernOpt/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/ModernOpt/src/commonheaders.h b/plugins/ModernOpt/src/stdafx.h index 35464a469c..6c9881a342 100644 --- a/plugins/ModernOpt/src/commonheaders.h +++ b/plugins/ModernOpt/src/stdafx.h @@ -22,8 +22,6 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#define _CRT_SECURE_NO_WARNINGS
-
#include <windows.h>
#include <windowsx.h>
#include <time.h>
|