+
+ bool m_modified:1;
+ bool m_vScrollbarVisible:1;
+#ifndef __WXGTK20__
+ bool m_updateFont:1;
+#endif // !__WXGTK20__
+ bool m_ignoreNextUpdate:1;
+
+#ifdef __WXGTK20__
+ // Our text buffer. Convenient, and holds the buffer while using
+ // a dummy one when m_frozenness > 0
+ GtkTextBuffer *m_buffer;
+
+ // number of calls to Freeze() minus number of calls to Thaw()
+ unsigned int m_frozenness;
+#endif