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/SimpleStatusMsg/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/SimpleStatusMsg/src')
-rw-r--r-- | plugins/SimpleStatusMsg/src/awaymsg.cpp | 2 | ||||
-rw-r--r-- | plugins/SimpleStatusMsg/src/main.cpp | 2 | ||||
-rw-r--r-- | plugins/SimpleStatusMsg/src/msgbox.cpp | 2 | ||||
-rw-r--r-- | plugins/SimpleStatusMsg/src/options.cpp | 2 | ||||
-rw-r--r-- | plugins/SimpleStatusMsg/src/stdafx.cxx (renamed from plugins/SimpleStatusMsg/src/stdafx.cpp) | 2 | ||||
-rw-r--r-- | plugins/SimpleStatusMsg/src/stdafx.h (renamed from plugins/SimpleStatusMsg/src/commonheaders.h) | 2 | ||||
-rw-r--r-- | plugins/SimpleStatusMsg/src/utils.cpp | 2 |
7 files changed, 6 insertions, 8 deletions
diff --git a/plugins/SimpleStatusMsg/src/awaymsg.cpp b/plugins/SimpleStatusMsg/src/awaymsg.cpp index b3c12e4415..3d227992f2 100644 --- a/plugins/SimpleStatusMsg/src/awaymsg.cpp +++ b/plugins/SimpleStatusMsg/src/awaymsg.cpp @@ -25,7 +25,7 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
static HGENMENU hAwayMsgMenuItem, hCopyMsgMenuItem, hGoToURLMenuItem;
static MWindowList hWindowList, hWindowList2;
diff --git a/plugins/SimpleStatusMsg/src/main.cpp b/plugins/SimpleStatusMsg/src/main.cpp index da01353b12..dc14c22ee8 100644 --- a/plugins/SimpleStatusMsg/src/main.cpp +++ b/plugins/SimpleStatusMsg/src/main.cpp @@ -18,7 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
HINSTANCE g_hInst;
diff --git a/plugins/SimpleStatusMsg/src/msgbox.cpp b/plugins/SimpleStatusMsg/src/msgbox.cpp index 62fae706de..b767cd4a9d 100644 --- a/plugins/SimpleStatusMsg/src/msgbox.cpp +++ b/plugins/SimpleStatusMsg/src/msgbox.cpp @@ -18,7 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "commonheaders.h" +#include "stdafx.h" #define I_ICON_DEL 0 #define I_ICON_HIST 1 diff --git a/plugins/SimpleStatusMsg/src/options.cpp b/plugins/SimpleStatusMsg/src/options.cpp index 8710df7052..ab3133f1b3 100644 --- a/plugins/SimpleStatusMsg/src/options.cpp +++ b/plugins/SimpleStatusMsg/src/options.cpp @@ -18,7 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
static void RebuildStatusMenu(void)
{
diff --git a/plugins/SimpleStatusMsg/src/stdafx.cpp b/plugins/SimpleStatusMsg/src/stdafx.cxx index 048b14e9d2..6fb37564b7 100644 --- a/plugins/SimpleStatusMsg/src/stdafx.cpp +++ b/plugins/SimpleStatusMsg/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/SimpleStatusMsg/src/commonheaders.h b/plugins/SimpleStatusMsg/src/stdafx.h index 43f26c7e74..f793424d18 100644 --- a/plugins/SimpleStatusMsg/src/commonheaders.h +++ b/plugins/SimpleStatusMsg/src/stdafx.h @@ -18,8 +18,6 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#define _CRT_SECURE_NO_WARNINGS
-
#include <windows.h>
#include <windowsx.h>
#include <time.h>
diff --git a/plugins/SimpleStatusMsg/src/utils.cpp b/plugins/SimpleStatusMsg/src/utils.cpp index 4a32d2ffbc..81770581a9 100644 --- a/plugins/SimpleStatusMsg/src/utils.cpp +++ b/plugins/SimpleStatusMsg/src/utils.cpp @@ -18,7 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
static LIST<void> arProtoHooks(5);
|