]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/private.h
Reworked Frame class
[wxWidgets.git] / include / wx / msw / private.h
index b9e0c1829bac2f96d481bc2e0220730c0147bc19..2a27a0287d7f98fede1a2576a7d030b4de965e83 100644 (file)
@@ -257,12 +257,12 @@ extern HBITMAP wxInvertMask(HBITMAP hbmpMask, int w = 0, int h = 0);
 #endif // GET_X_LPARAM
 
 // get the current state of SHIFT/CTRL keys
-extern inline bool wxIsShiftDown()
+inline bool wxIsShiftDown()
 {
     return (::GetKeyState(VK_SHIFT) & 0x100) != 0;
 }
 
-extern inline bool wxIsCtrlDown()
+inline bool wxIsCtrlDown()
 {
     return (::GetKeyState(VK_CONTROL) & 0x100) != 0;
 }