From 3f54c58da2475b91a064a9757e52add56ed42527 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 20 Apr 2004 13:34:52 +0000 Subject: [PATCH] made Update() virtual git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26877 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/latex/wx/progdlg.tex | 2 +- include/wx/generic/progdlgg.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/latex/wx/progdlg.tex b/docs/latex/wx/progdlg.tex index 5758f848d5..6fb56019c6 100644 --- a/docs/latex/wx/progdlg.tex +++ b/docs/latex/wx/progdlg.tex @@ -75,7 +75,7 @@ ABORT. \membersection{wxProgressDialog::Update}\label{wxprogressdialogupdate} -\func{bool}{Update}{ +\func{virtual bool}{Update}{ \param{int }{value},\rtfsp \param{const wxString\& }{newmsg = ""}} diff --git a/include/wx/generic/progdlgg.h b/include/wx/generic/progdlgg.h index 9fc06a25bf..ee59cb9426 100644 --- a/include/wx/generic/progdlgg.h +++ b/include/wx/generic/progdlgg.h @@ -55,7 +55,7 @@ public: @param newmsg if used, new message to display @returns true if ABORT button has not been pressed */ - bool Update(int value, const wxString& newmsg = wxT("")); + virtual bool Update(int value, const wxString& newmsg = wxT("")); /* Can be called to continue after the cancel button has been pressed, but the program decided to continue the operation (e.g., user didn't -- 2.47.2