spell check with codespell

This commit is contained in:
stephanebill
2024-11-20 16:53:40 -05:00
parent c4559c39c3
commit 4f2afa8c47
162 changed files with 250 additions and 250 deletions

View File

@@ -293,7 +293,7 @@ Original SSLeay License
* This library is free for commercial and non-commercial use as long as
* the following conditions are aheared to. The following conditions
* the following conditions are adhered to. The following conditions
* apply to all code found in this distribution, be it the RC4, RSA,
@@ -343,7 +343,7 @@ Original SSLeay License
* Eric Young (eay@cryptsoft.com)"
* The word 'cryptographic' can be left out if the rouines from the library
* The word 'cryptographic' can be left out if the routines from the library
* being used are not cryptographic related :-).
@@ -379,7 +379,7 @@ Original SSLeay License
*
* The licence and distribution terms for any publically available version or
* The licence and distribution terms for any publicly available version or
* derivative of this code cannot be changed. i.e. this code cannot simply be

View File

@@ -293,7 +293,7 @@ Original SSLeay License
* This library is free for commercial and non-commercial use as long as
* the following conditions are aheared to. The following conditions
* the following conditions are adhered to. The following conditions
* apply to all code found in this distribution, be it the RC4, RSA,
@@ -343,7 +343,7 @@ Original SSLeay License
* Eric Young (eay@cryptsoft.com)"
* The word 'cryptographic' can be left out if the rouines from the library
* The word 'cryptographic' can be left out if the routines from the library
* being used are not cryptographic related :-).
@@ -379,7 +379,7 @@ Original SSLeay License
*
* The licence and distribution terms for any publically available version or
* The licence and distribution terms for any publicly available version or
* derivative of this code cannot be changed. i.e. this code cannot simply be

View File

@@ -394,7 +394,7 @@ Original SSLeay License
*
* The licence and distribution terms for any publically available version or
* The licence and distribution terms for any publicly available version or
* derivative of this code cannot be changed. i.e. this code cannot simply be

View File

@@ -500,7 +500,7 @@ static DWORD WINAPI android_thread_func(LPVOID param)
else
{
status = android_freerdp_run(instance);
WLog_DBG(TAG, "Disonnect...");
WLog_DBG(TAG, "Disconnect...");
if (!freerdp_disconnect(instance))
status = GetLastError();
@@ -650,7 +650,7 @@ JNIEXPORT jlong JNICALL Java_com_freerdp_freerdpcore_services_LibFreeRDP_freerdp
if (setenv("HOME", _strdup(envStr), 1) != 0)
{
char ebuffer[256] = { 0 };
WLog_FATAL(TAG, "Failed to set environemnt HOME=%s %s [%d]", env,
WLog_FATAL(TAG, "Failed to set environment HOME=%s %s [%d]", env,
winpr_strerror(errno, ebuffer, sizeof(ebuffer)), errno);
return (jlong)NULL;
}
@@ -996,7 +996,7 @@ jint JNI_OnLoad(JavaVM* vm, void* reserved)
{
JNIEnv* env;
setlocale(LC_ALL, "");
WLog_DBG(TAG, "Setting up JNI environement...");
WLog_DBG(TAG, "Setting up JNI environment...");
/*
if (freerdp_handle_signals() != 0)
@@ -1029,7 +1029,7 @@ jint JNI_OnLoad(JavaVM* vm, void* reserved)
void JNICALL JNI_OnUnload(JavaVM* vm, void* reserved)
{
JNIEnv* env;
WLog_DBG(TAG, "Tearing down JNI environement...");
WLog_DBG(TAG, "Tearing down JNI environment...");
if ((*vm)->GetEnv(vm, (void**)&env, JNI_VERSION_1_6) != JNI_OK)
{

View File

@@ -204,9 +204,9 @@ public class SessionView extends View
return res;
}
public void setTouchPointerPadding(int widht, int height)
public void setTouchPointerPadding(int width, int height)
{
touchPointerPaddingWidth = widht;
touchPointerPaddingWidth = width;
touchPointerPaddingHeight = height;
requestLayout();
}

View File

@@ -145,7 +145,7 @@ public class DoubleGestureDetector
mCurrentDoubleDownEvent.recycle();
mCurrentDoubleDownEvent = MotionEvent.obtain(ev);
// set detection mode to unkown and send a TOUCH timeout event to detect single taps
// set detection mode to unknown and send a TOUCH timeout event to detect single taps
mCurrentMode = MODE_UNKNOWN;
mHandler.sendEmptyMessageDelayed(TAP, SINGLE_DOUBLE_TOUCH_TIMEOUT);

View File

@@ -474,7 +474,7 @@ public class GestureDetector
/**
* Notified when a long press occurs with the initial on down {@link MotionEvent}
* that trigged it.
* that triggered it.
*
* @param e The initial on down motion event that started the longpress.
*/

View File

@@ -433,7 +433,7 @@ public class KeyboardMapper
boolean modifierActive = isModifierPressed();
// if a modifier is pressed we will send a VK event (if possible) so that key
// combinations will be recognized correctly. Otherwise we will send the unicode
// key. At the end we will reset all modifiers and notifiy our listener.
// key. At the end we will reset all modifiers and notify our listener.
int vkcode = getVirtualKeyCode(event.getKeyCode());
if ((vkcode & KEY_FLAG_UNICODE) != 0)
listener.processUnicodeKey(vkcode & (~KEY_FLAG_UNICODE));

View File

@@ -13,7 +13,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- childs are specified bottom-up so that we have a correct z-order in our final layout -->
<!-- children are specified bottom-up so that we have a correct z-order in our final layout -->
<android.inputmethodservice.KeyboardView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/extended_keyboard"
android:layout_width="match_parent"

View File

@@ -46,7 +46,7 @@ echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
@rem Get command-line arguments, handling Windows variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args