projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
_MSC_VER change fixes - now compiles again
[wxWidgets.git]
/
include
/
wx
/
dynlib.h
diff --git
a/include/wx/dynlib.h
b/include/wx/dynlib.h
index 39db5aa6adc5863850ac377b2c610bce8c9a8d36..ceecce4a5842bcea2940498ff5fac51c2175a981 100644
(file)
--- a/
include/wx/dynlib.h
+++ b/
include/wx/dynlib.h
@@
-39,7
+39,7
@@
class wxLibrary: public wxObject {
void MergeWithSystem();
protected:
void MergeWithSystem();
protected:
- void PrepareClasses(wxClassInfo *
*
first);
+ void PrepareClasses(wxClassInfo *first);
};
// ---------------------------------------------------------------------------
};
// ---------------------------------------------------------------------------
@@
-65,9
+65,9
@@
extern wxLibraries wxTheLibraries;
// Interesting defines
#define WXDLL_ENTRY_FUNCTION() \
// Interesting defines
#define WXDLL_ENTRY_FUNCTION() \
-extern "C" wxClassInfo *
*
wxGetClassFirst(); \
-wxClassInfo *
*
wxGetClassFirst() { \
- return
&wxClassInfo::first
; \
+extern "C" wxClassInfo *wxGetClassFirst(); \
+wxClassInfo *wxGetClassFirst() { \
+ return
wxClassInfo::GetFirst()
; \
}
#endif
}
#endif