X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a585ca5cb0d1e9d49c3abf83c4ec7730c14924f1..16694769eccf9058669254e17a32764eff33f476:/include/wx/dynlib.h diff --git a/include/wx/dynlib.h b/include/wx/dynlib.h index ec1b270bd3..68a16fceaf 100644 --- a/include/wx/dynlib.h +++ b/include/wx/dynlib.h @@ -72,7 +72,7 @@ class wxDllLoader @param success Must point to a bool variable which will be set to TRUE or FALSE. @return A handle to the loaded DLL. Use success parameter to test if it is valid. */ - static wxDllType LoadDll(const wxString & libname, bool *success); + static wxDllType LoadLibrary(const wxString & libname, bool *success); /** This function resolves a symbol in a loaded DLL, such as a variable or function name. @param dllHandle Handle of the DLL, as returned by LoadDll(). @@ -82,7 +82,7 @@ class wxDllLoader static void * GetSymbol(wxDllType dllHandle, const wxString &name); private: /// forbid construction of objects - wxDllLoader() + wxDllLoader(); }; // ----------------------------------------------------------------------------