modify signature of new wxStreamBuffer ctors to avoid conflicts with the existing ones (closes #10144)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59761 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -421,13 +421,13 @@ public:
|
||||
InitWithStream(stream, mode);
|
||||
}
|
||||
|
||||
wxStreamBuffer(wxInputStream& stream, size_t bufsize)
|
||||
wxStreamBuffer(size_t bufsize, wxInputStream& stream)
|
||||
{
|
||||
InitWithStream(stream, read);
|
||||
SetBufferIO(bufsize);
|
||||
}
|
||||
|
||||
wxStreamBuffer(wxOutputStream& stream, size_t bufsize)
|
||||
wxStreamBuffer(size_t bufsize, wxOutputStream& stream)
|
||||
{
|
||||
InitWithStream(stream, write);
|
||||
SetBufferIO(bufsize);
|
||||
|
Reference in New Issue
Block a user