projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
better guarding when no printing architecture exists (patch from Joel Low)
[wxWidgets.git]
/
src
/
xrc
/
xh_collpane.cpp
diff --git
a/src/xrc/xh_collpane.cpp
b/src/xrc/xh_collpane.cpp
index c335919622f7e0be187de92c97c753d506b49443..bad9bcd9df42ae1213ea6e3f6c1cea2d6aa3e673 100644
(file)
--- a/
src/xrc/xh_collpane.cpp
+++ b/
src/xrc/xh_collpane.cpp
@@
-17,12
+17,17
@@
#if wxUSE_XRC && wxUSE_COLLPANE
#if wxUSE_XRC && wxUSE_COLLPANE
-#include "wx/xrc/xh_collpane.h"
+#ifndef WX_PRECOMP
+ #include "wx/log.h"
+#endif
+
#include "wx/collpane.h"
#include "wx/collpane.h"
+#include "wx/xrc/xh_collpane.h"
IMPLEMENT_DYNAMIC_CLASS(wxCollapsiblePaneXmlHandler, wxXmlResourceHandler)
IMPLEMENT_DYNAMIC_CLASS(wxCollapsiblePaneXmlHandler, wxXmlResourceHandler)
-wxCollapsiblePaneXmlHandler::wxCollapsiblePaneXmlHandler() : wxXmlResourceHandler()
+wxCollapsiblePaneXmlHandler::wxCollapsiblePaneXmlHandler()
+: wxXmlResourceHandler(), m_isInside(false)
{
XRC_ADD_STYLE(wxCP_NO_TLW_RESIZE);
XRC_ADD_STYLE(wxCP_DEFAULT_STYLE);
{
XRC_ADD_STYLE(wxCP_NO_TLW_RESIZE);
XRC_ADD_STYLE(wxCP_DEFAULT_STYLE);