diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-08-01 19:58:00 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-08-01 19:58:00 +0000 |
commit | c16b6082563b8b18fe02ce0721bf184aecd7127a (patch) | |
tree | c47b9bdfa1577ee802301a848250da5a68f7f410 /plugins/TranslitSwitcher/src | |
parent | ed9e9297ad8ae631d8856ba8917c92b545be4ebf (diff) |
TranslitSwitcher: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14793 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TranslitSwitcher/src')
-rw-r--r-- | plugins/TranslitSwitcher/src/Layoutproc.cpp | 2 | ||||
-rw-r--r-- | plugins/TranslitSwitcher/src/TranslitSwitcher.cpp | 2 | ||||
-rw-r--r-- | plugins/TranslitSwitcher/src/stdafx.cxx (renamed from plugins/TranslitSwitcher/src/stdafx.cpp) | 2 | ||||
-rw-r--r-- | plugins/TranslitSwitcher/src/stdafx.h (renamed from plugins/TranslitSwitcher/src/TranslitSwitcher.h) | 2 |
4 files changed, 3 insertions, 5 deletions
diff --git a/plugins/TranslitSwitcher/src/Layoutproc.cpp b/plugins/TranslitSwitcher/src/Layoutproc.cpp index d063b4b3ad..28e99f75e5 100644 --- a/plugins/TranslitSwitcher/src/Layoutproc.cpp +++ b/plugins/TranslitSwitcher/src/Layoutproc.cpp @@ -17,7 +17,7 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "TranslitSwitcher.h"
+#include "stdafx.h"
SMADD_BATCHPARSE2 smgp;
SMADD_BATCHPARSERES *smileyPrs = NULL;
diff --git a/plugins/TranslitSwitcher/src/TranslitSwitcher.cpp b/plugins/TranslitSwitcher/src/TranslitSwitcher.cpp index 6bbb673832..1dcd9f4b71 100644 --- a/plugins/TranslitSwitcher/src/TranslitSwitcher.cpp +++ b/plugins/TranslitSwitcher/src/TranslitSwitcher.cpp @@ -17,7 +17,7 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "TranslitSwitcher.h"
+#include "stdafx.h"
HINSTANCE hInst = NULL;
diff --git a/plugins/TranslitSwitcher/src/stdafx.cpp b/plugins/TranslitSwitcher/src/stdafx.cxx index 5fc5058fd8..6fb37564b7 100644 --- a/plugins/TranslitSwitcher/src/stdafx.cpp +++ b/plugins/TranslitSwitcher/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 "TranslitSwitcher.h"
\ No newline at end of file +#include "stdafx.h"
\ No newline at end of file diff --git a/plugins/TranslitSwitcher/src/TranslitSwitcher.h b/plugins/TranslitSwitcher/src/stdafx.h index ed822a31d9..662bef8ed7 100644 --- a/plugins/TranslitSwitcher/src/TranslitSwitcher.h +++ b/plugins/TranslitSwitcher/src/stdafx.h @@ -20,8 +20,6 @@ Boston, MA 02111-1307, USA. #ifndef __TRANSLITSWIITCHER_H__
#define __TRANSLITSWIITCHER_H__
-#define _CRT_SECURE_NO_WARNINGS
-
#include <windows.h>
#include <commctrl.h>
|