Remove Windows CE support
Windows CE doesn't seem to be supported by Microsoft any longer. Last CE release was in early 2013 and the PocketPC and Smartphone targets supported by wxWidgets are long gone. The build files where already removed in an earlier cleanup this commit removes all files, every #ifdef and all documentation regarding the Windows CE support. Closes https://github.com/wxWidgets/wxWidgets/pull/81
This commit is contained in:
committed by
Vadim Zeitlin
parent
6fbc2bd0b7
commit
8282c1be0f
@@ -106,11 +106,9 @@ WXDWORD wxStatusBar::MSWGetStyle(long style, WXDWORD *exstyle) const
|
||||
}
|
||||
else
|
||||
{
|
||||
#ifndef __WXWINCE__
|
||||
// may be some versions of comctl32.dll do need it - anyhow, it won't
|
||||
// do any harm
|
||||
msStyle |= SBARS_SIZEGRIP;
|
||||
#endif
|
||||
}
|
||||
|
||||
return msStyle;
|
||||
@@ -518,9 +516,7 @@ void wxStatusBar::DoMoveWindow(int x, int y, int width, int height)
|
||||
// if other windows are size deferred
|
||||
::SetWindowPos(GetHwnd(), NULL, x, y, width, height,
|
||||
SWP_NOZORDER | SWP_NOOWNERZORDER | SWP_NOACTIVATE
|
||||
#ifndef __WXWINCE__
|
||||
| SWP_NOCOPYBITS | SWP_NOSENDCHANGING
|
||||
#endif
|
||||
);
|
||||
}
|
||||
|
||||
@@ -574,7 +570,6 @@ void wxStatusBar::SetStatusStyles(int n, const int styles[])
|
||||
WXLRESULT
|
||||
wxStatusBar::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
|
||||
{
|
||||
#ifndef __WXWINCE__
|
||||
if ( nMsg == WM_WINDOWPOSCHANGING )
|
||||
{
|
||||
WINDOWPOS *lpPos = (WINDOWPOS *)lParam;
|
||||
@@ -613,7 +608,6 @@ wxStatusBar::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
if ( nMsg == WM_SIZE )
|
||||
{
|
||||
|
Reference in New Issue
Block a user