Cygwin/X: Remove g_hwndKeyboardFocus
It's set but it's value is never used Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Colin Harrison <colin.harrison@virgin.net>
This commit is contained in:
parent
5e896e425f
commit
04d11abcf2
|
@ -73,7 +73,6 @@ char * g_pszCommandLine = NULL;
|
||||||
Bool g_fSilentFatalError = FALSE;
|
Bool g_fSilentFatalError = FALSE;
|
||||||
DWORD g_dwCurrentThreadID = 0;
|
DWORD g_dwCurrentThreadID = 0;
|
||||||
Bool g_fKeyboardHookLL = FALSE;
|
Bool g_fKeyboardHookLL = FALSE;
|
||||||
HWND g_hwndKeyboardFocus = NULL;
|
|
||||||
Bool g_fNoHelpMessageBox = FALSE;
|
Bool g_fNoHelpMessageBox = FALSE;
|
||||||
Bool g_fSoftwareCursor = FALSE;
|
Bool g_fSoftwareCursor = FALSE;
|
||||||
Bool g_fSilentDupError = FALSE;
|
Bool g_fSilentDupError = FALSE;
|
||||||
|
@ -120,7 +119,6 @@ void
|
||||||
winInitializeGlobals (void)
|
winInitializeGlobals (void)
|
||||||
{
|
{
|
||||||
g_dwCurrentThreadID = GetCurrentThreadId ();
|
g_dwCurrentThreadID = GetCurrentThreadId ();
|
||||||
g_hwndKeyboardFocus = NULL;
|
|
||||||
#ifdef XWIN_CLIPBOARD
|
#ifdef XWIN_CLIPBOARD
|
||||||
g_fClipboardLaunched = FALSE;
|
g_fClipboardLaunched = FALSE;
|
||||||
g_fClipboardStarted = FALSE;
|
g_fClipboardStarted = FALSE;
|
||||||
|
|
|
@ -57,7 +57,6 @@ Bool g_fButton[3] = { FALSE, FALSE, FALSE };
|
||||||
extern Bool g_fClipboard;
|
extern Bool g_fClipboard;
|
||||||
extern HWND g_hDlgDepthChange;
|
extern HWND g_hDlgDepthChange;
|
||||||
extern Bool g_fKeyboardHookLL;
|
extern Bool g_fKeyboardHookLL;
|
||||||
extern HWND g_hwndKeyboardFocus;
|
|
||||||
extern Bool g_fSoftwareCursor;
|
extern Bool g_fSoftwareCursor;
|
||||||
extern DWORD g_dwCurrentThreadID;
|
extern DWORD g_dwCurrentThreadID;
|
||||||
|
|
||||||
|
@ -964,9 +963,6 @@ winWindowProc (HWND hwnd, UINT message,
|
||||||
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* Save handle of our main window that last received focus */
|
|
||||||
g_hwndKeyboardFocus = hwnd;
|
|
||||||
|
|
||||||
/* Restore the state of all mode keys */
|
/* Restore the state of all mode keys */
|
||||||
winRestoreModeKeyStates ();
|
winRestoreModeKeyStates ();
|
||||||
|
|
||||||
|
@ -979,9 +975,6 @@ winWindowProc (HWND hwnd, UINT message,
|
||||||
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
if (s_pScreenPriv == NULL || s_pScreenInfo->fIgnoreInput)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* Clear handle of our main window that last received focus */
|
|
||||||
g_hwndKeyboardFocus = NULL;
|
|
||||||
|
|
||||||
/* Release any pressed keys */
|
/* Release any pressed keys */
|
||||||
winKeybdReleaseKeys ();
|
winKeybdReleaseKeys ();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue