]> git.saurik.com Git - wxWidgets.git/commitdiff
remove 'extern' from IsKeyDown,... for bcc
authorBart A.M. Jourquin <bart.jourquin@fucam.ac.be>
Wed, 1 Mar 2000 10:35:30 +0000 (10:35 +0000)
committerBart A.M. Jourquin <bart.jourquin@fucam.ac.be>
Wed, 1 Mar 2000 10:35:30 +0000 (10:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6371 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/window.cpp

index 99ebca9e65c57ddd43598659cbb37d81207024c1..e0ca05bd88da78767bb9ba2aead50ae23d41f653 100644 (file)
@@ -130,8 +130,8 @@ wxWindow *wxFindWinFromHandle(WXHWND hWnd);
 static void TranslateKbdEventToMouse(wxWindow *win, int *x, int *y, WPARAM *flags);
 
 // get the current state of SHIFT/CTRL keys
-extern inline bool wxIsShiftDown() { return (GetKeyState(VK_SHIFT) & 0x100) != 0; }
-extern inline bool wxIsCtrlDown() { return (GetKeyState(VK_CONTROL) & 0x100) != 0; }
+inline bool wxIsShiftDown() { return (GetKeyState(VK_SHIFT) & 0x100) != 0; }
+inline bool wxIsCtrlDown() { return (GetKeyState(VK_CONTROL) & 0x100) != 0; }
 
 // ---------------------------------------------------------------------------
 // event tables