X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a585ca5cb0d1e9d49c3abf83c4ec7730c14924f1..c5a451873e7ff8a8c66683496bd320c93d4f213c:/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();
 };
 
 // ----------------------------------------------------------------------------