projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added '_' checking that warns of the use of "_" or "\_" in the wrong places
[wxWidgets.git]
/
src
/
os2
/
mdi.cpp
diff --git
a/src/os2/mdi.cpp
b/src/os2/mdi.cpp
index c8cdaaec523c097dfe98841a46aaf74bf146639c..37b17ad0185aee7f6744ba3a29f977791955e259 100644
(file)
--- a/
src/os2/mdi.cpp
+++ b/
src/os2/mdi.cpp
@@
-127,7
+127,7
@@
bool wxMDIParentFrame::Create(wxWindow *parent,
long style,
const wxString& name)
{
long style,
const wxString& name)
{
- m_
d
efaultIcon = (WXHICON) (wxSTD_MDIPARENTFRAME_ICON ? wxSTD_MDIPARENTFRAME_ICON : wxDEFAULT_MDIPARENTFRAME_ICON);
+ m_
hD
efaultIcon = (WXHICON) (wxSTD_MDIPARENTFRAME_ICON ? wxSTD_MDIPARENTFRAME_ICON : wxDEFAULT_MDIPARENTFRAME_ICON);
m_clientWindow = NULL;
m_currentChild = NULL;
m_clientWindow = NULL;
m_currentChild = NULL;
@@
-288,8
+288,7
@@
void wxMDIParentFrame::ActivatePrevious()
// the MDI parent frame window proc
// ---------------------------------------------------------------------------
// the MDI parent frame window proc
// ---------------------------------------------------------------------------
-MRESULT wxMDIParentFrame::OS2WindowProc(HWND hwnd,
- WXUINT message,
+MRESULT wxMDIParentFrame::OS2WindowProc(WXUINT message,
WXWPARAM wParam,
WXLPARAM lParam)
{
WXWPARAM wParam,
WXLPARAM lParam)
{
@@
-375,7
+374,7
@@
MRESULT wxMDIParentFrame::OS2WindowProc(HWND hwnd,
}
*/
if ( !processed )
}
*/
if ( !processed )
- rc = wxFrame::OS2WindowProc(
hwnd,
message, wParam, lParam);
+ rc = wxFrame::OS2WindowProc(message, wParam, lParam);
return rc;
}
return rc;
}
@@
-504,8
+503,7
@@
bool wxMDIParentFrame::HandleCommand(WXWORD id, WXWORD cmd, WXHWND hwnd)
return FALSE;
}
return FALSE;
}
-MRESULT wxMDIParentFrame::OS2DefWindowProc(HWND hwnd,
- WXUINT message,
+MRESULT wxMDIParentFrame::OS2DefWindowProc(WXUINT message,
WXWPARAM wParam,
WXLPARAM lParam)
{
WXWPARAM wParam,
WXLPARAM lParam)
{
@@
-559,8
+557,8
@@
bool wxMDIChildFrame::Create(wxMDIParentFrame *parent,
long style,
const wxString& name)
{
long style,
const wxString& name)
{
- m_
d
efaultIcon = (WXHICON)(wxSTD_MDICHILDFRAME_ICON ? wxSTD_MDICHILDFRAME_ICON
- : wxDEFAULT_MDICHILDFRAME_ICON);
+ m_
hD
efaultIcon = (WXHICON)(wxSTD_MDICHILDFRAME_ICON ? wxSTD_MDICHILDFRAME_ICON
+
: wxDEFAULT_MDICHILDFRAME_ICON);
SetName(name);
SetName(name);
@@
-774,8
+772,7
@@
void wxMDIChildFrame::Activate()
// MDI window proc and message handlers
// ---------------------------------------------------------------------------
// MDI window proc and message handlers
// ---------------------------------------------------------------------------
-MRESULT wxMDIChildFrame::OS2WindowProc(HWND hwnd,
- WXUINT message,
+MRESULT wxMDIChildFrame::OS2WindowProc(WXUINT message,
WXWPARAM wParam,
WXLPARAM lParam)
{
WXWPARAM wParam,
WXLPARAM lParam)
{
@@
-836,7
+833,7
@@
MRESULT wxMDIChildFrame::OS2WindowProc(HWND hwnd,
}
*/
if ( !processed )
}
*/
if ( !processed )
- rc = wxFrame::OS2WindowProc(
hwnd,
message, wParam, lParam);
+ rc = wxFrame::OS2WindowProc(message, wParam, lParam);
return rc;
}
return rc;
}
@@
-987,7
+984,7
@@
bool wxMDIChildFrame::HandleWindowPosChanging(void *pos)
// MDI specific message translation/preprocessing
// ---------------------------------------------------------------------------
// MDI specific message translation/preprocessing
// ---------------------------------------------------------------------------
-MRESULT wxMDIChildFrame::OS2DefWindowProc(
HWND hwnd,
WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
+MRESULT wxMDIChildFrame::OS2DefWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
{
// TODO
/*
{
// TODO
/*
@@
-999,7
+996,12
@@
MRESULT wxMDIChildFrame::OS2DefWindowProc(HWND hwnd, WXUINT message, WXWPARAM wP
bool wxMDIChildFrame::OS2TranslateMessage(WXMSG* msg)
{
bool wxMDIChildFrame::OS2TranslateMessage(WXMSG* msg)
{
- return m_acceleratorTable.Translate(GetParent(), msg);
+#if wxUSE_ACCEL
+ return m_acceleratorTable.Translate(GetParent()->GetHWND(), msg);
+#else
+ return FALSE;
+#endif //wxUSE_ACCEL
+
}
// ---------------------------------------------------------------------------
}
// ---------------------------------------------------------------------------