diff options
Diffstat (limited to 'plugins/ChangeKeyboardLayout/text_operations.cpp')
-rw-r--r-- | plugins/ChangeKeyboardLayout/text_operations.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/ChangeKeyboardLayout/text_operations.cpp b/plugins/ChangeKeyboardLayout/text_operations.cpp index c7652c7776..8a1b8b097d 100644 --- a/plugins/ChangeKeyboardLayout/text_operations.cpp +++ b/plugins/ChangeKeyboardLayout/text_operations.cpp @@ -158,12 +158,6 @@ LPTSTR ChangeTextCase(LPCTSTR ptszInText) ptszOutText = (LPTSTR)mir_alloc(MaxTextSize*sizeof(TCHAR));
- if (!CoreCheck())
- {
- _tcscpy(ptszOutText, TranslateT("Change Keyboard Layout plugin was designed to be used with Miranda IM only. For use with any other application, please contact author."));
- return ptszOutText;
- }
-
_tcscpy(ptszOutText, ptszInText);
for (i = 0;i<_tcslen(ptszInText);i++)
@@ -187,12 +181,6 @@ LPTSTR ChangeTextLayout(LPCTSTR ptszInText, HKL hklCurLay, HKL hklToLay, BOOL Tw ptszOutText = (LPTSTR)mir_alloc(MaxTextSize*sizeof(TCHAR));
- if (!CoreCheck())
- {
- _tcscpy(ptszOutText, TranslateT("Change Keyboard Layout plugin was designed to be used with Miranda IM only. For use with any other application, please contact author."));
- return ptszOutText;
- }
-
_tcscpy(ptszOutText, ptszInText);
if ((hklCurLay == NULL)||(hklToLay == NULL))
|