Corrected typo

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25021 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-12-27 22:31:01 +00:00
parent 830e6d754c
commit c0f984728e

View File

@@ -740,7 +740,7 @@ bool wxTopLevelWindowMSW::ShowFullScreen(bool show, long style)
rect.x, rect.y, rect.width, rect.height,
flags);
#if __WXWINCE__ && _WIN32_WCE < 400
#if defined(__WXWINCE__) && _WIN32_WCE < 400
::SHFullScreen(GetHwnd(), SHFS_HIDETASKBAR | SHFS_HIDESIPBUTTON);
#endif
@@ -750,7 +750,7 @@ bool wxTopLevelWindowMSW::ShowFullScreen(bool show, long style)
}
else // stop showing full screen
{
#if __WXWINCE__ && _WIN32_WCE < 400
#if defined(__WXWINCE__) && _WIN32_WCE < 400
::SHFullScreen(GetHwnd(), SHFS_SHOWTASKBAR | SHFS_SHOWSIPBUTTON);
#endif
Maximize(m_fsIsMaximized);