virtual bool Draw(wxDC&);
virtual bool IsModified() const { return m_documentModified; }
- virtual void Modify(bool mod) { m_documentModified = mod; }
+ virtual void Modify(bool mod);
virtual bool AddView(wxView *view);
virtual bool RemoveView(wxView *view);
// for dll-interface class 'wxDocChildFrame'" -- this is bogus as the
// template will be DLL-exported but only once it is used as base class
// here!
+ #pragma warning (push)
#pragma warning (disable:4275)
#endif
};
#ifdef __VISUALC6__
- #pragma warning (default:4275)
+ #pragma warning (pop)
#endif
// ----------------------------------------------------------------------------