X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/23a54e14a71e9184c3c33c2ba39b10ee1dd029b6..0c9a1c32795ae9b1affd71b97f3e309611eb1cc5:/samples/docvwmdi/doc.cpp?ds=sidebyside diff --git a/samples/docvwmdi/doc.cpp b/samples/docvwmdi/doc.cpp index fe26f59bad..c5be85a308 100644 --- a/samples/docvwmdi/doc.cpp +++ b/samples/docvwmdi/doc.cpp @@ -44,7 +44,7 @@ DrawingDocument::~DrawingDocument(void) } #if wxUSE_STD_IOSTREAM -ostream& DrawingDocument::SaveObject(ostream& stream) +wxSTD ostream& DrawingDocument::SaveObject(wxSTD ostream& stream) { wxDocument::SaveObject(stream); @@ -88,7 +88,7 @@ wxOutputStream& DrawingDocument::SaveObject(wxOutputStream& stream) #endif #if wxUSE_STD_IOSTREAM -istream& DrawingDocument::LoadObject(istream& stream) +wxSTD istream& DrawingDocument::LoadObject(wxSTD istream& stream) { wxDocument::LoadObject(stream); @@ -152,7 +152,7 @@ DoodleSegment::~DoodleSegment(void) } #if wxUSE_STD_IOSTREAM -ostream& DoodleSegment::SaveObject(ostream& stream) +wxSTD ostream& DoodleSegment::SaveObject(wxSTD ostream& stream) { wxInt32 n = lines.Number(); stream << n << '\n'; @@ -194,7 +194,7 @@ wxOutputStream &DoodleSegment::SaveObject(wxOutputStream& stream) #endif #if wxUSE_STD_IOSTREAM -istream& DoodleSegment::LoadObject(istream& stream) +wxSTD istream& DoodleSegment::LoadObject(wxSTD istream& stream) { wxInt32 n = 0; stream >> n;