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
This commit is contained in:
J. Russell Smyth
1999-04-02 00:35:45 +00:00
parent a4146f166f
commit 7cf496bfdc

View File

@@ -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