projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Set focus to generic wxDataViewCtrl when clicking with any mouse button, not just...
[wxWidgets.git]
/
src
/
os2
/
menu.cpp
diff --git
a/src/os2/menu.cpp
b/src/os2/menu.cpp
index 7f693d4d2ddc4278ab2443a83216f46e4d1597ce..065a8a7dc004cc6b8245e98b40fd829dd23f80b2 100644
(file)
--- a/
src/os2/menu.cpp
+++ b/
src/os2/menu.cpp
@@
-201,7
+201,7
@@
void wxMenu::UpdateAccel(
//
// Find the (new) accel for this item
//
//
// Find the (new) accel for this item
//
- wxAcceleratorEntry* pAccel = wxAcceleratorEntry::Create(pItem->Get
Text
());
+ wxAcceleratorEntry* pAccel = wxAcceleratorEntry::Create(pItem->Get
ItemLabel
());
if (pAccel)
pAccel->m_command = pItem->GetId();
if (pAccel)
pAccel->m_command = pItem->GetId();
@@
-323,7
+323,7
@@
bool wxMenu::DoInsertOrAppend( wxMenuItem* pItem,
//
rItem.afStyle |= MIS_TEXT;
}
//
rItem.afStyle |= MIS_TEXT;
}
- pData = (char*) pItem->Get
Text
().wx_str();
+ pData = (char*) pItem->Get
ItemLabel
().wx_str();
}
if (nPos == (size_t)-1)
}
if (nPos == (size_t)-1)
@@
-387,7
+387,7
@@
void wxMenu::EndRadioGroup()
wxMenuItem* wxMenu::DoAppend( wxMenuItem* pItem )
{
wxMenuItem* wxMenu::DoAppend( wxMenuItem* pItem )
{
- wxCHECK_MSG( pItem, NULL,
_
T("NULL item in wxMenu::DoAppend") );
+ wxCHECK_MSG( pItem, NULL,
wx
T("NULL item in wxMenu::DoAppend") );
bool bCheck = false;
bool bCheck = false;
@@
-428,7
+428,7
@@
wxMenuItem* wxMenu::DoAppend( wxMenuItem* pItem )
}
else
{
}
else
{
- wxFAIL_MSG(
_
T("where is the radio group start item?") );
+ wxFAIL_MSG(
wx
T("where is the radio group start item?") );
}
}
}
}
}
}
@@
-847,7
+847,7
@@
void wxMenuBar::EnableTop(
Refresh();
} // end of wxMenuBar::EnableTop
Refresh();
} // end of wxMenuBar::EnableTop
-void wxMenuBar::Set
LabelTop
(
+void wxMenuBar::Set
MenuLabel
(
size_t nPos
, const wxString& rLabel
)
size_t nPos
, const wxString& rLabel
)
@@
-884,16
+884,16
@@
void wxMenuBar::SetLabelTop(
wxLogLastError(wxT("ModifyMenu"));
}
Refresh();
wxLogLastError(wxT("ModifyMenu"));
}
Refresh();
-} // end of wxMenuBar::Set
LabelTop
+} // end of wxMenuBar::Set
MenuLabel
-wxString wxMenuBar::Get
LabelTop
(
+wxString wxMenuBar::Get
MenuLabel
(
size_t nPos
) const
{
wxCHECK_MSG( nPos < GetMenuCount(), wxEmptyString,
size_t nPos
) const
{
wxCHECK_MSG( nPos < GetMenuCount(), wxEmptyString,
- wxT("invalid menu index in wxMenuBar::Get
LabelTop
") );
+ wxT("invalid menu index in wxMenuBar::Get
MenuLabel
") );
return m_titles[nPos];
return m_titles[nPos];
-} // end of wxMenuBar::Get
LabelTop
+} // end of wxMenuBar::Get
MenuLabel
// ---------------------------------------------------------------------------
// wxMenuBar construction
// ---------------------------------------------------------------------------
// wxMenuBar construction
@@
-1097,7
+1097,9
@@
void wxMenuBar::Attach(
,m_vAccelTable.GetHACCEL()
,(HWND)pFrame->GetFrame()
))
,m_vAccelTable.GetHACCEL()
,(HWND)pFrame->GetFrame()
))
+ {
wxLogLastError(wxT("WinSetAccelTable"));
wxLogLastError(wxT("WinSetAccelTable"));
+ }
#endif // wxUSE_ACCEL
} // end of wxMenuBar::Attach
#endif // wxUSE_ACCEL
} // end of wxMenuBar::Attach