From a8973b121d90b09900b49c50c8540880b44335cc Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 17 Aug 2001 17:52:02 +0000 Subject: [PATCH] warning fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11402 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/wizard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generic/wizard.cpp b/src/generic/wizard.cpp index c3a9ab8cdd..a81c20a7aa 100644 --- a/src/generic/wizard.cpp +++ b/src/generic/wizard.cpp @@ -204,7 +204,7 @@ void wxWizard::DoCreateControls() x -= sizeBtn.x; x -= BUTTON_MARGIN ; - (void*) new wxButton(this, wxID_HELP, _("&Help"), wxPoint(x, y), sizeBtn); + (void)new wxButton(this, wxID_HELP, _("&Help"), wxPoint(x, y), sizeBtn); x += sizeBtn.x; x += BUTTON_MARGIN ; }