X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6fa6d65956285379aa1d99b76d92db76aaecf11e..b53aea81d2e102224b452ef5bf7aee1132f37c6f:/src/common/fldlgcmn.cpp diff --git a/src/common/fldlgcmn.cpp b/src/common/fldlgcmn.cpp index ab3908303e..e57a244cb3 100644 --- a/src/common/fldlgcmn.cpp +++ b/src/common/fldlgcmn.cpp @@ -151,12 +151,12 @@ wxString wxFileDialogBase::AppendExtension(const wxString &filePath, return filePath + ext; } -bool wxFileDialogBase::SetExtraControlCreator(ExtraControlCreatorFunction c) +bool wxFileDialogBase::SetExtraControlCreator(ExtraControlCreatorFunction creator) { wxCHECK_MSG( !m_extraControlCreator, false, "wxFileDialog::SetExtraControl() called second time" ); - m_extraControlCreator = c; + m_extraControlCreator = creator; return SupportsExtraControl(); }