VC6 compilation fix for native wxProgressDialog implementation.

Don't use return with a void value, VC6 doesn't support this and it's
unnecessary here anyhow.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65354 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2010-08-18 23:55:52 +00:00
parent c31d9c7f60
commit b00403b401

View File

@@ -561,7 +561,7 @@ void wxProgressDialog::SetTitle(const wxString& title)
}
#endif // wxHAS_MSW_TASKDIALOG
return wxGenericProgressDialog::SetTitle(title);
wxGenericProgressDialog::SetTitle(title);
}
wxString wxProgressDialog::GetTitle() const