Generalized wxScrolledWindow into wxScrolled<T> that can derive from
anything (typically wxPanel or wxWindow). Fixed generic wxListCtrl to use wxScrolled<wxWindow> - this fixes focus problems with label-editing text control. Fixes to wxScrolledWindow doxygen docs. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52961 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -264,12 +264,14 @@
|
||||
template <typename T> class Foo { ... };
|
||||
WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( Foo<int> )
|
||||
|
||||
(notice that currently we only need this for the wxBase library)
|
||||
(notice that currently we only need this for wxBase and wxCore libraries)
|
||||
*/
|
||||
#if defined(__VISUALC__) && (__VISUALC__ <= 1200)
|
||||
#ifdef WXMAKINGDLL_BASE
|
||||
#define WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE(decl) \
|
||||
template class WXDLLIMPEXP_BASE decl;
|
||||
#define WXDLLIMPEXP_TEMPLATE_INSTANCE_CORE(decl) \
|
||||
template class WXDLLIMPEXP_CORE decl;
|
||||
#else
|
||||
/*
|
||||
We need to disable this warning when using this macro, as
|
||||
@@ -281,9 +283,12 @@
|
||||
|
||||
#define WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE(decl) \
|
||||
extern template class WXDLLIMPEXP_BASE decl;
|
||||
#define WXDLLIMPEXP_TEMPLATE_INSTANCE_CORE(decl) \
|
||||
extern template class WXDLLIMPEXP_CORE decl;
|
||||
#endif
|
||||
#else /* not VC <= 6 */
|
||||
#define WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE(decl)
|
||||
#define WXDLLIMPEXP_TEMPLATE_INSTANCE_CORE(decl)
|
||||
#endif /* VC6/others */
|
||||
|
||||
#endif /* _WX_DLIMPEXP_H_ */
|
||||
|
Reference in New Issue
Block a user