Added support for wxID_CONTEXT_HELP to wxStdDialogButtonSizer.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31660 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Kevin Ollivier
2005-01-30 20:56:43 +00:00
parent 09ff2ee163
commit 261ba880dd
2 changed files with 2 additions and 0 deletions

View File

@@ -40,6 +40,7 @@ Adds a button to the wxStdDialogButtonSizer. The button must have one of the fol
\item wxID_NO \item wxID_NO
\item wxID_CANCEL \item wxID_CANCEL
\item wxID_HELP \item wxID_HELP
\item wxID_CONTEXT_HELP
\end{itemize} \end{itemize}
\membersection{wxStdDialogButtonSizer::Finalise}\label{wxstddialogbuttonsizerfinalise} \membersection{wxStdDialogButtonSizer::Finalise}\label{wxstddialogbuttonsizerfinalise}

View File

@@ -1699,6 +1699,7 @@ void wxStdDialogButtonSizer::AddButton(wxButton *mybutton)
m_buttonCancel = mybutton; m_buttonCancel = mybutton;
break; break;
case wxID_HELP: case wxID_HELP:
case wxID_CONTEXT_HELP:
m_buttonHelp = mybutton; m_buttonHelp = mybutton;
break; break;
default: default: