Remove wrong consts from wxTextFile::Open() documentation.

Open() is a non-const method.

See #14171.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71076 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-04-02 16:07:31 +00:00
parent 91f5965066
commit 8362ae0a2a

View File

@@ -255,7 +255,7 @@ public:
The @a conv argument is only meaningful in Unicode build of wxWidgets when
it is used to convert the file to wide character representation.
*/
bool Open(const wxMBConv& conv = wxConvAuto()) const;
bool Open(const wxMBConv& conv = wxConvAuto());
/**
Opens the file with the given name and also loads file in memory on success.
@@ -265,7 +265,7 @@ public:
The @a conv argument is only meaningful in Unicode build of wxWidgets when
it is used to convert the file to wide character representation.
*/
bool Open(const wxString& strFile, const wxMBConv& conv = wxConvAuto()) const;
bool Open(const wxString& strFile, const wxMBConv& conv = wxConvAuto());
/**
Delete line number @a n from the file.