X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/68278f98be1e296ce919e2a32c19ba3b298f67f6..31811e1acaf3dd16403b94f5ff93c41e4e4ca9bb:/utils/ogl/src/bmpshape.cpp diff --git a/utils/ogl/src/bmpshape.cpp b/utils/ogl/src/bmpshape.cpp index 2cc8db9c10..1171f9ac13 100644 --- a/utils/ogl/src/bmpshape.cpp +++ b/utils/ogl/src/bmpshape.cpp @@ -79,23 +79,17 @@ void wxBitmapShape::SetSize(double w, double h, bool recursive) } #ifdef PROLOGIO -// Prolog database stuff -char *wxBitmapShape::GetFunctor() -{ - return "node_image"; -} - -void wxBitmapShape::WritePrologAttributes(wxExpr *clause) +void wxBitmapShape::WriteAttributes(wxExpr *clause) { // Can't really save the bitmap; so instantiate the bitmap // at a higher level in the application, from a symbol library. - wxRectangleShape::WritePrologAttributes(clause); + wxRectangleShape::WriteAttributes(clause); clause->AddAttributeValueString("filename", m_filename); } -void wxBitmapShape::ReadPrologAttributes(wxExpr *clause) +void wxBitmapShape::ReadAttributes(wxExpr *clause) { - wxRectangleShape::ReadPrologAttributes(clause); + wxRectangleShape::ReadAttributes(clause); clause->GetAttributeValue("filename", m_filename); } #endif