]> git.saurik.com Git - wxWidgets.git/commitdiff
removed declaration of wxObject::Dump(stream &str) from tex2rtf.cpp -
authorJ. Russell Smyth <drfish@cox.net>
Fri, 2 Apr 1999 00:35:45 +0000 (00:35 +0000)
committerJ. Russell Smyth <drfish@cox.net>
Fri, 2 Apr 1999 00:35:45 +0000 (00:35 +0000)
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

index 5e35432637fe4a81b535bb90d18dfe20618b96d4..cc22a9c52de5fda05eba60af847edd2934940ed8 100644 (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
\ No newline at end of file