projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Just correct the path in the header comment.
[wxWidgets.git]
/
src
/
os2
/
frame.cpp
diff --git
a/src/os2/frame.cpp
b/src/os2/frame.cpp
index 98dbc1ba94061782d4653aeac5c66f5cdab4bac2..a872743ea25db80e4632936fd3b381a8e37258f2 100644
(file)
--- a/
src/os2/frame.cpp
+++ b/
src/os2/frame.cpp
@@
-52,8
+52,6
@@
BEGIN_EVENT_TABLE(wxFrame, wxFrameBase)
EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged)
END_EVENT_TABLE()
EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged)
END_EVENT_TABLE()
-IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
-
// ============================================================================
// implementation
// ============================================================================
// ============================================================================
// implementation
// ============================================================================
@@
-127,7
+125,8
@@
bool wxFrame::Create( wxWindow* pParent,
wxFrame::~wxFrame()
{
wxFrame::~wxFrame()
{
- m_isBeingDeleted = true;
+ SendDestroyEvent();
+
DeleteAllBars();
} // end of wxFrame::~wxFrame
DeleteAllBars();
} // end of wxFrame::~wxFrame
@@
-280,7
+279,7
@@
void wxFrame::PositionStatusBar()
{
vError = ::WinGetLastError(vHabmain);
sError = wxPMErrorToStr(vError);
{
vError = ::WinGetLastError(vHabmain);
sError = wxPMErrorToStr(vError);
- wxLogError(
_
T("Error setting parent for StatusBar. Error: %s\n"), sError.c_str());
+ wxLogError(
wx
T("Error setting parent for StatusBar. Error: %s\n"), sError.c_str());
return;
}
}
return;
}
}
@@
-404,14
+403,14
@@
void wxFrame::InternalSetMenuBar()
{
vError = ::WinGetLastError(vHabmain);
sError = wxPMErrorToStr(vError);
{
vError = ::WinGetLastError(vHabmain);
sError = wxPMErrorToStr(vError);
- wxLogError(
_
T("Error setting parent for submenu. Error: %s\n"), sError.c_str());
+ wxLogError(
wx
T("Error setting parent for submenu. Error: %s\n"), sError.c_str());
}
if (!::WinSetOwner(m_hMenu, m_hFrame))
{
vError = ::WinGetLastError(vHabmain);
sError = wxPMErrorToStr(vError);
}
if (!::WinSetOwner(m_hMenu, m_hFrame))
{
vError = ::WinGetLastError(vHabmain);
sError = wxPMErrorToStr(vError);
- wxLogError(
_
T("Error setting parent for submenu. Error: %s\n"), sError.c_str());
+ wxLogError(
wx
T("Error setting parent for submenu. Error: %s\n"), sError.c_str());
}
::WinSendMsg(m_hFrame, WM_UPDATEFRAME, (MPARAM)FCF_MENU, (MPARAM)0);
} // end of wxFrame::InternalSetMenuBar
}
::WinSendMsg(m_hFrame, WM_UPDATEFRAME, (MPARAM)FCF_MENU, (MPARAM)0);
} // end of wxFrame::InternalSetMenuBar
@@
-499,7
+498,7
@@
bool wxFrame::ShowFullScreen( bool bShow, long lStyle )
if ((lStyle & wxFULLSCREEN_NOSTATUSBAR) && pTheStatusBar)
{
m_nFsStatusBarFields = pTheStatusBar->GetFieldsCount();
if ((lStyle & wxFULLSCREEN_NOSTATUSBAR) && pTheStatusBar)
{
m_nFsStatusBarFields = pTheStatusBar->GetFieldsCount();
- SetStatusBar(
(wxStatusBar*)
NULL);
+ SetStatusBar(NULL);
delete pTheStatusBar;
}
else
delete pTheStatusBar;
}
else
@@
-853,7
+852,7
@@
bool wxFrame::HandlePaint()
const wxIcon& vIcon = GetIcon();
HPOINTER hIcon;
const wxIcon& vIcon = GetIcon();
HPOINTER hIcon;
- if (vIcon.Ok())
+ if (vIcon.
Is
Ok())
hIcon = (HPOINTER)::WinSendMsg(m_hFrame, WM_QUERYICON, 0L, 0L);
else
hIcon = (HPOINTER)m_hDefaultIcon;
hIcon = (HPOINTER)::WinSendMsg(m_hFrame, WM_QUERYICON, 0L, 0L);
else
hIcon = (HPOINTER)m_hDefaultIcon;
@@
-1072,9
+1071,8
@@
MRESULT EXPENTRY wxFrameMainWndProc( HWND hWnd,
{
MRESULT rc = (MRESULT)0;
bool bProcessed = false;
{
MRESULT rc = (MRESULT)0;
bool bProcessed = false;
- wxFrame* pWnd = NULL;
-
pWnd
= (wxFrame*) wxFindWinFromHandle((WXHWND) hWnd);
+
wxFrame* pWnd
= (wxFrame*) wxFindWinFromHandle((WXHWND) hWnd);
switch (ulMsg)
{
case WM_QUERYFRAMECTLCOUNT:
switch (ulMsg)
{
case WM_QUERYFRAMECTLCOUNT:
@@
-1303,7
+1301,7
@@
MRESULT wxFrame::OS2WindowProc( WXUINT uMessage,
const wxIcon& vIcon = GetIcon();
HPOINTER hIcon;
const wxIcon& vIcon = GetIcon();
HPOINTER hIcon;
- if (vIcon.Ok())
+ if (vIcon.
Is
Ok())
hIcon = (HPOINTER)::WinSendMsg(GetHWND(), WM_QUERYICON, 0L, 0L);
else
hIcon = (HPOINTER)m_hDefaultIcon;
hIcon = (HPOINTER)::WinSendMsg(GetHWND(), WM_QUERYICON, 0L, 0L);
else
hIcon = (HPOINTER)m_hDefaultIcon;