From 7cf496bfdcadfafd82633658b606e94cb5c2a265 Mon Sep 17 00:00:00 2001 From: "J. Russell Smyth" Date: Fri, 2 Apr 1999 00:35:45 +0000 Subject: [PATCH] removed declaration of wxObject::Dump(stream &str) from tex2rtf.cpp - I cannot see a reason for it, and it wont compile under VC++ (redefined function). Code is still there commented out if someone knows why it should be here and how to ifdef it so VC++ 6.0 can still build it git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2024 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- utils/tex2rtf/src/tex2rtf.cpp | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/utils/tex2rtf/src/tex2rtf.cpp b/utils/tex2rtf/src/tex2rtf.cpp index 5e35432637..cc22a9c52d 100644 --- a/utils/tex2rtf/src/tex2rtf.cpp +++ b/utils/tex2rtf/src/tex2rtf.cpp @@ -1082,15 +1082,14 @@ char *Tex2RTFConnection::OnRequest(const wxString& topic, const wxString& item, #endif - #ifndef NO_GUI #ifndef __WXGTK__ -void wxObject::Dump(ostream& str) -{ - if (GetClassInfo() && GetClassInfo()->GetClassName()) - str << GetClassInfo()->GetClassName(); - else - str << "unknown object class"; -} +//void wxObject::Dump(ostream& str) +//{ +// if (GetClassInfo() && GetClassInfo()->GetClassName()) +// str << GetClassInfo()->GetClassName(); +// else +// str << "unknown object class"; +//} +#endif #endif -#endif \ No newline at end of file -- 2.50.0