From b00403b401b75f95b6984cf5d0f6d71492f0a1f9 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 18 Aug 2010 23:55:52 +0000 Subject: [PATCH] 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 --- src/msw/progdlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/progdlg.cpp b/src/msw/progdlg.cpp index b86f98986b..425e2a8cf8 100644 --- a/src/msw/progdlg.cpp +++ b/src/msw/progdlg.cpp @@ -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 -- 2.45.2