mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 15:49:50 -06:00
Upgrade WX to r74856, mainly to support @2x.
This commit is contained in:
9
Externals/wxWidgets3/include/wx/wfstream.h
vendored
9
Externals/wxWidgets3/include/wx/wfstream.h
vendored
@ -4,7 +4,6 @@
|
||||
// Author: Guilhem Lavaux
|
||||
// Modified by:
|
||||
// Created: 11/07/98
|
||||
// RCS-ID: $Id: wfstream.h 62995 2009-12-27 19:39:55Z VZ $
|
||||
// Copyright: (c) Guilhem Lavaux
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
@ -42,6 +41,8 @@ public:
|
||||
virtual bool IsOk() const;
|
||||
bool IsSeekable() const { return m_file->GetKind() == wxFILE_KIND_DISK; }
|
||||
|
||||
wxFile* GetFile() const { return m_file; }
|
||||
|
||||
protected:
|
||||
wxFileInputStream();
|
||||
|
||||
@ -72,6 +73,8 @@ public:
|
||||
virtual bool IsOk() const;
|
||||
bool IsSeekable() const { return m_file->GetKind() == wxFILE_KIND_DISK; }
|
||||
|
||||
wxFile* GetFile() const { return m_file; }
|
||||
|
||||
protected:
|
||||
wxFileOutputStream();
|
||||
|
||||
@ -169,6 +172,8 @@ public:
|
||||
virtual bool IsOk() const;
|
||||
bool IsSeekable() const { return m_file->GetKind() == wxFILE_KIND_DISK; }
|
||||
|
||||
wxFFile* GetFile() const { return m_file; }
|
||||
|
||||
protected:
|
||||
wxFFileInputStream();
|
||||
|
||||
@ -199,6 +204,8 @@ public:
|
||||
virtual bool IsOk() const;
|
||||
bool IsSeekable() const { return m_file->GetKind() == wxFILE_KIND_DISK; }
|
||||
|
||||
wxFFile* GetFile() const { return m_file; }
|
||||
|
||||
protected:
|
||||
wxFFileOutputStream();
|
||||
|
||||
|
Reference in New Issue
Block a user