Fix "open mode" variables naming convention in wxTextFile

Start variable name with lower case letters for consistency.

No real changes.
This commit is contained in:
Vadim Zeitlin
2016-02-13 13:46:25 +01:00
parent d59c6c5add
commit fe850fccc5
2 changed files with 7 additions and 7 deletions

View File

@@ -36,7 +36,7 @@ protected:
// implement the base class pure virtuals
virtual bool OnExists() const wxOVERRIDE;
virtual bool OnOpen(const wxString &strBufferName,
wxTextBufferOpenMode OpenMode) wxOVERRIDE;
wxTextBufferOpenMode openMode) wxOVERRIDE;
virtual bool OnClose() wxOVERRIDE;
virtual bool OnRead(const wxMBConv& conv) wxOVERRIDE;
virtual bool OnWrite(wxTextFileType typeNew, const wxMBConv& conv) wxOVERRIDE;