]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dynlib.cpp
Corrected wxImage for use with mono wxBitmaps,
[wxWidgets.git] / src / common / dynlib.cpp
index 228cc67835076b870f01312eda39b99a06de11c9..8ad47c2b837bbc0cb1ede3418e61edf7361e0d1a 100644 (file)
@@ -190,7 +190,6 @@ wxDllLoader::GetProgramHandle(void)
    // shl_findsymbol with NULL handle looks up in main program
    return 0; 
 #else
-#warning "Please implement this for your system!"
    wxFAIL_MSG(_("This method is not implemented under Windows or OS/2"));
    return 0;
 #endif
@@ -277,7 +276,7 @@ wxDllLoader::GetSymbol(wxDllType dllHandle, const wxString &name)
 // wxLibraries (only one instance should normally exist)
 // ---------------------------------------------------------------------------
 
-wxLibraries::wxLibraries()
+wxLibraries::wxLibraries():m_loaded(wxKEY_STRING)
 {
 }
 
@@ -323,7 +322,7 @@ wxLibrary *wxLibraries::LoadLibrary(const wxString& name)
     const char *envLibPath = getenv("LD_LIBRARY_PATH");
     if ( envLibPath )
         libPath << ':' << envLibPath;
-    wxStringTokenizer tokenizer(libPath, _T(':'));
+    wxStringTokenizer tokenizer(libPath, wxT(':'));
     while ( tokenizer.HasMoreToken() )
     {
         wxString fullname(tokenizer.NextToken());