Could of Unicode fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2782 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ove Kaaven
1999-06-14 14:29:41 +00:00
parent ec2ba3aa46
commit ee0fc54abf
2 changed files with 6 additions and 6 deletions

View File

@@ -162,7 +162,7 @@ bool wxPropertyFormView::AssociateNames(void)
while (node)
{
wxWindow *win = (wxWindow *)node->Data();
if (win->GetName() != "")
if (win->GetName() != _T(""))
{
wxProperty *prop = m_propertySheet->GetProperty(win->GetName());
if (prop)
@@ -219,7 +219,7 @@ void wxPropertyFormView::OnCommand(wxWindow& win, wxCommandEvent& event)
if (!m_propertySheet)
return;
if (win.GetName() == "")
if (win.GetName() == _T(""))
return;
if (wxStrcmp(win.GetName(), _T("ok")) == 0)