mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
Update to wxWidgets r67291.
Fixes a wxFileSelector regression on OS X. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7404 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
6
Externals/wxWidgets3/include/wx/txtstrm.h
vendored
6
Externals/wxWidgets3/include/wx/txtstrm.h
vendored
@ -4,7 +4,7 @@
|
||||
// Author: Guilhem Lavaux
|
||||
// Modified by:
|
||||
// Created: 28/06/1998
|
||||
// RCS-ID: $Id: txtstrm.h 58757 2009-02-08 11:45:59Z VZ $
|
||||
// RCS-ID: $Id: txtstrm.h 67286 2011-03-22 17:15:45Z VZ $
|
||||
// Copyright: (c) Guilhem Lavaux
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
@ -45,6 +45,8 @@ public:
|
||||
#endif
|
||||
~wxTextInputStream();
|
||||
|
||||
const wxInputStream& GetInputStream() const { return m_input; }
|
||||
|
||||
wxUint32 Read32(int base = 10); // base may be between 2 and 36, inclusive, or the special 0 (= C format)
|
||||
wxUint16 Read16(int base = 10);
|
||||
wxUint8 Read8(int base = 10);
|
||||
@ -116,6 +118,8 @@ public:
|
||||
#endif
|
||||
virtual ~wxTextOutputStream();
|
||||
|
||||
const wxOutputStream& GetOutputStream() const { return m_output; }
|
||||
|
||||
void SetMode( wxEOL mode = wxEOL_NATIVE );
|
||||
wxEOL GetMode() { return m_mode; }
|
||||
|
||||
|
Reference in New Issue
Block a user