initialize the variable as XtVaGetValues() may not do it apparently [backport from HEAD]

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@46386 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-06-09 17:04:58 +00:00
parent 90dfa0efd3
commit 96b17da728

View File

@@ -641,7 +641,7 @@ void wxWindow::SetLabel(const wxString& label)
wxString wxWindow::GetLabel() const
{
char *label;
char *label = NULL;
XtVaGetValues((Widget)GetMainWidget(), XmNtitle, &label, NULL);
return wxString(label);