projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Enable debug information in release builds for msvc makefiles too.
[wxWidgets.git]
/
src
/
os2
/
menuitem.cpp
diff --git
a/src/os2/menuitem.cpp
b/src/os2/menuitem.cpp
index 921cfd2cbe4c633f6ce423185c3427aabb62b286..bffbf97258f1532ab357ee686590400d35dbe4d5 100644
(file)
--- a/
src/os2/menuitem.cpp
+++ b/
src/os2/menuitem.cpp
@@
-146,7
+146,7
@@
void wxMenuItem::Init()
//
// Tell the owner drawing code to to show the accel string as well
//
//
// Tell the owner drawing code to to show the accel string as well
//
- SetAccelString(m_text.AfterFirst(
_
T('\t')));
+ SetAccelString(m_text.AfterFirst(
wx
T('\t')));
#endif // wxUSE_OWNER_DRAWN
} // end of wxMenuItem::Init
#endif // wxUSE_OWNER_DRAWN
} // end of wxMenuItem::Init
@@
-180,7
+180,7
@@
bool wxMenuItem::IsChecked() const
return (uFlag & MIA_CHECKED) == MIA_CHECKED ;
} // end of wxMenuItem::IsChecked
return (uFlag & MIA_CHECKED) == MIA_CHECKED ;
} // end of wxMenuItem::IsChecked
-wxString wxMenuItemBase::GetLabel
From
Text(
+wxString wxMenuItemBase::GetLabelText(
const wxString& rsText
)
{
const wxString& rsText
)
{
@@
-199,7
+199,7
@@
wxString wxMenuItemBase::GetLabelFromText(
sLabel += *zPc;
}
return sLabel;
sLabel += *zPc;
}
return sLabel;
-} // end of wxMenuItemBase::GetLabel
From
Text
+} // end of wxMenuItemBase::GetLabelText
//
// Radio group stuff
//
// Radio group stuff
@@
-215,7
+215,7
@@
void wxMenuItem::SetRadioGroupStart(
)
{
wxASSERT_MSG( !m_bIsRadioGroupStart
)
{
wxASSERT_MSG( !m_bIsRadioGroupStart
- ,
_
T("should only be called for the next radio items")
+ ,
wx
T("should only be called for the next radio items")
);
m_vRadioGroup.m_nStart = nStart;
);
m_vRadioGroup.m_nStart = nStart;
@@
-226,7
+226,7
@@
void wxMenuItem::SetRadioGroupEnd(
)
{
wxASSERT_MSG( m_bIsRadioGroupStart
)
{
wxASSERT_MSG( m_bIsRadioGroupStart
- ,
_
T("should only be called for the first radio item")
+ ,
wx
T("should only be called for the first radio item")
);
m_vRadioGroup.m_nEnd = nEnd;
} // end of wxMenuItem::SetRadioGroupEnd
);
m_vRadioGroup.m_nEnd = nEnd;
} // end of wxMenuItem::SetRadioGroupEnd
@@
-288,7
+288,7
@@
void wxMenuItem::Check(
int nPos = rItems.IndexOf(this);
wxCHECK_RET( nPos != wxNOT_FOUND
int nPos = rItems.IndexOf(this);
wxCHECK_RET( nPos != wxNOT_FOUND
- ,
_
T("menuitem not found in the menu items list?")
+ ,
wx
T("menuitem not found in the menu items list?")
);
//
);
//
@@
-363,7
+363,7
@@
void wxMenuItem::Check(
wxMenuItemBase::Check(bCheck);
} // end of wxMenuItem::Check
wxMenuItemBase::Check(bCheck);
} // end of wxMenuItem::Check
-void wxMenuItem::Set
Text
( const wxString& rText )
+void wxMenuItem::Set
ItemLabel
( const wxString& rText )
{
//
// Don't do anything if label didn't change
{
//
// Don't do anything if label didn't change
@@
-374,7
+374,7
@@
void wxMenuItem::SetText( const wxString& rText )
return;
// wxMenuItemBase will do stock ID checks
return;
// wxMenuItemBase will do stock ID checks
- wxMenuItemBase::Set
Text
(sText);
+ wxMenuItemBase::Set
ItemLabel
(sText);
// m_text could now be different from 'text' if we are a stock menu item,
// so use only m_text below
// m_text could now be different from 'text' if we are a stock menu item,
// so use only m_text below
@@
-382,9
+382,9
@@
void wxMenuItem::SetText( const wxString& rText )
OWNER_DRAWN_ONLY(wxOwnerDrawn::SetName(m_text));
#if wxUSE_OWNER_DRAWN
if (rText.IsEmpty())
OWNER_DRAWN_ONLY(wxOwnerDrawn::SetName(m_text));
#if wxUSE_OWNER_DRAWN
if (rText.IsEmpty())
- SetAccelString(m_text.AfterFirst(
_
T('\t')));
+ SetAccelString(m_text.AfterFirst(
wx
T('\t')));
else
else
- SetAccelString(rText.AfterFirst(
_
T('\t')));
+ SetAccelString(rText.AfterFirst(
wx
T('\t')));
#endif // wxUSE_OWNER_DRAWN
HWND hMenu = GetHmenuOf(m_parentMenu);
#endif // wxUSE_OWNER_DRAWN
HWND hMenu = GetHmenuOf(m_parentMenu);