summaryrefslogtreecommitdiff
path: root/plugins/ChangeKeyboardLayout/src
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ChangeKeyboardLayout/src')
-rw-r--r--plugins/ChangeKeyboardLayout/src/hook_events.cpp2
-rw-r--r--plugins/ChangeKeyboardLayout/src/hook_events.h2
-rw-r--r--plugins/ChangeKeyboardLayout/src/main.cpp2
-rw-r--r--plugins/ChangeKeyboardLayout/src/options.cpp2
-rw-r--r--plugins/ChangeKeyboardLayout/src/options.h2
-rw-r--r--plugins/ChangeKeyboardLayout/src/stdafx.cxx (renamed from plugins/ChangeKeyboardLayout/src/stdafx.cpp)2
-rw-r--r--plugins/ChangeKeyboardLayout/src/stdafx.h (renamed from plugins/ChangeKeyboardLayout/src/commonheaders.h)0
-rw-r--r--plugins/ChangeKeyboardLayout/src/text_operations.cpp2
-rw-r--r--plugins/ChangeKeyboardLayout/src/text_operations.h2
9 files changed, 8 insertions, 8 deletions
diff --git a/plugins/ChangeKeyboardLayout/src/hook_events.cpp b/plugins/ChangeKeyboardLayout/src/hook_events.cpp
index 0affb1e21a..5749270715 100644
--- a/plugins/ChangeKeyboardLayout/src/hook_events.cpp
+++ b/plugins/ChangeKeyboardLayout/src/hook_events.cpp
@@ -1,4 +1,4 @@
-#include "commonheaders.h"
+#include "stdafx.h"
INT_PTR APIChangeLayout(WPARAM wParam, LPARAM lParam)
{
diff --git a/plugins/ChangeKeyboardLayout/src/hook_events.h b/plugins/ChangeKeyboardLayout/src/hook_events.h
index 992c7cd0c3..b7e38dd3f6 100644
--- a/plugins/ChangeKeyboardLayout/src/hook_events.h
+++ b/plugins/ChangeKeyboardLayout/src/hook_events.h
@@ -1,7 +1,7 @@
#ifndef M_CKL_HOOK_EVENTS_H
#define M_CKL_HOOK_EVENTS_H
-#include "commonheaders.h"
+#include "stdafx.h"
void ReadMainOptions();
void WriteMainOptions();
diff --git a/plugins/ChangeKeyboardLayout/src/main.cpp b/plugins/ChangeKeyboardLayout/src/main.cpp
index 6cb7f6bc6e..d3b73da55f 100644
--- a/plugins/ChangeKeyboardLayout/src/main.cpp
+++ b/plugins/ChangeKeyboardLayout/src/main.cpp
@@ -1,4 +1,4 @@
-#include "commonheaders.h"
+#include "stdafx.h"
int hLangpack;
LPTSTR ptszLayStrings[20];
diff --git a/plugins/ChangeKeyboardLayout/src/options.cpp b/plugins/ChangeKeyboardLayout/src/options.cpp
index 900e679243..a12010eef2 100644
--- a/plugins/ChangeKeyboardLayout/src/options.cpp
+++ b/plugins/ChangeKeyboardLayout/src/options.cpp
@@ -1,4 +1,4 @@
-#include "commonheaders.h"
+#include "stdafx.h"
INT_PTR CALLBACK DlgMainProcOptions(HWND hWnd, UINT uiMessage, WPARAM wParam, LPARAM lParam)
{
diff --git a/plugins/ChangeKeyboardLayout/src/options.h b/plugins/ChangeKeyboardLayout/src/options.h
index bcf46a244b..e63f63e6ca 100644
--- a/plugins/ChangeKeyboardLayout/src/options.h
+++ b/plugins/ChangeKeyboardLayout/src/options.h
@@ -1,7 +1,7 @@
#ifndef M_CKL_OPTIONS_H
#define M_CKL_OPTIONS_H
-#include "commonheaders.h"
+#include "stdafx.h"
INT_PTR CALLBACK DlgMainProcOptions(HWND hWnd, UINT uiMessage, WPARAM wParam, LPARAM lParam);
INT_PTR CALLBACK DlgPopupsProcOptions(HWND hWnd, UINT uiMessage, WPARAM wParam, LPARAM lParam);
diff --git a/plugins/ChangeKeyboardLayout/src/stdafx.cpp b/plugins/ChangeKeyboardLayout/src/stdafx.cxx
index 048b14e9d2..6fb37564b7 100644
--- a/plugins/ChangeKeyboardLayout/src/stdafx.cpp
+++ b/plugins/ChangeKeyboardLayout/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/ChangeKeyboardLayout/src/commonheaders.h b/plugins/ChangeKeyboardLayout/src/stdafx.h
index 1160595f75..1160595f75 100644
--- a/plugins/ChangeKeyboardLayout/src/commonheaders.h
+++ b/plugins/ChangeKeyboardLayout/src/stdafx.h
diff --git a/plugins/ChangeKeyboardLayout/src/text_operations.cpp b/plugins/ChangeKeyboardLayout/src/text_operations.cpp
index 0500302770..135409e4be 100644
--- a/plugins/ChangeKeyboardLayout/src/text_operations.cpp
+++ b/plugins/ChangeKeyboardLayout/src/text_operations.cpp
@@ -1,4 +1,4 @@
-#include "commonheaders.h"
+#include "stdafx.h"
struct EditStreamData
{
diff --git a/plugins/ChangeKeyboardLayout/src/text_operations.h b/plugins/ChangeKeyboardLayout/src/text_operations.h
index 6671406f3d..6f5fdfed02 100644
--- a/plugins/ChangeKeyboardLayout/src/text_operations.h
+++ b/plugins/ChangeKeyboardLayout/src/text_operations.h
@@ -1,7 +1,7 @@
#ifndef M_CKL_TEXT_OPERATIONS_H
#define M_CKL_TEXT_OPERATIONS_H
-#include "commonheaders.h"
+#include "stdafx.h"
BOOL CopyTextToClipboard(LPTSTR ptszText);
LPSTR GetNameOfLayout(HKL hklLayout);