]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dynlib.cpp
fixed parsing of comments before root node
[wxWidgets.git] / src / common / dynlib.cpp
index 796231c31a802126e309007dba09f356c737742d..f90788fb174e606f10a00193dd7e598f1ae26ec4 100644 (file)
@@ -166,7 +166,7 @@ void wxLibrary::PrepareClasses(wxClassInfo *first)
     {
         if (info->m_className)
             classTable.Put(info->m_className, (wxObject *)info);
     {
         if (info->m_className)
             classTable.Put(info->m_className, (wxObject *)info);
-        info = info->GetNext();
+        info = (wxClassInfo *)info->GetNext();
     }
 
     // Set base pointers for each wxClassInfo
     }
 
     // Set base pointers for each wxClassInfo
@@ -363,7 +363,7 @@ wxLibrary *wxLibraries::LoadLibrary(const wxString& name)
     if (node != NULL)
         return ((wxLibrary *)node->Data());
 #else // !OS/2
     if (node != NULL)
         return ((wxLibrary *)node->Data());
 #else // !OS/2
-    if ( (node = m_loaded.Find(name.GetData())) )
+    if ( (node = m_loaded.Find(name.GetData())) != NULL)
         return ((wxLibrary *)node->Data());
 #endif
     // If DLL shares data, this is necessary.
         return ((wxLibrary *)node->Data());
 #endif
     // If DLL shares data, this is necessary.