git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13170
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxDLManifestEntry::~wxDLManifestEntry()
{
- UnregisterModules();
- RestoreClassInfo();
-
- wxDllLoader::UnloadLibrary(m_handle);
+ if( m_handle != 0 )
+ {
+ UnregisterModules();
+ RestoreClassInfo();
+ wxDllLoader::UnloadLibrary(m_handle);
+ }
}
bool wxDLManifestEntry::UnrefLib()
}
else
{
- wxCHECK_MSG( !entry->UnrefLib(), 0,
+ wxCHECK_MSG( entry->UnrefLib(), 0,
_T("Currently linked library is, ..not loaded??") );
entry = 0;
}
// ----------------------------------------------------------------------------
#ifdef __GNUG__
- #pragma implementation "fontbase.h"
+#pragma implementation "fontbase.h"
#endif
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
- #pragma hdrstop
+#pragma hdrstop
#endif
#ifndef WX_PRECOMP
- #include "wx/font.h"
+#include "wx/font.h"
+#include "wx/intl.h"
#endif // WX_PRECOMP
#include "wx/gdicmn.h"