git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21517
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool wxStyledTextCtrl::LoadFile(const wxString& filename)
{
bool wxStyledTextCtrl::LoadFile(const wxString& filename)
{
wxFile file(filename, wxFile::read);
wxFile file(filename, wxFile::read);
- if (!file.IsOpened())
- return FALSE;
-
- wxString contents;
- off_t len = file.Length();
-
- wxChar *buf = contents.GetWriteBuf(len);
- bool success = (file.Read(buf, len) == len);
- contents.UngetWriteBuf();
-
- if (success)
- SetText(contents);
- EmptyUndoBuffer();
- SetSavePoint();
+ wxString contents;
+ off_t len = file.Length();
+
+ if (len > 0)
+ {
+ wxChar *buf = contents.GetWriteBuf(len);
+ success = (file.Read(buf, len) == len);
+ contents.UngetWriteBuf();
+ }
+ else
+ success = true; // empty file is ok
+
+ if (success)
+ {
+ SetText(contents);
+ EmptyUndoBuffer();
+ SetSavePoint();
+ }
bool wxStyledTextCtrl::LoadFile(const wxString& filename)
{
bool wxStyledTextCtrl::LoadFile(const wxString& filename)
{
wxFile file(filename, wxFile::read);
wxFile file(filename, wxFile::read);
- if (!file.IsOpened())
- return FALSE;
-
- wxString contents;
- off_t len = file.Length();
-
- wxChar *buf = contents.GetWriteBuf(len);
- bool success = (file.Read(buf, len) == len);
- contents.UngetWriteBuf();
-
- if (success)
- SetText(contents);
- EmptyUndoBuffer();
- SetSavePoint();
+ wxString contents;
+ off_t len = file.Length();
+
+ if (len > 0)
+ {
+ wxChar *buf = contents.GetWriteBuf(len);
+ success = (file.Read(buf, len) == len);
+ contents.UngetWriteBuf();
+ }
+ else
+ success = true; // empty file is ok
+
+ if (success)
+ {
+ SetText(contents);
+ EmptyUndoBuffer();
+ SetSavePoint();
+ }
bool wxStyledTextCtrl::LoadFile(const wxString& filename)
{
bool wxStyledTextCtrl::LoadFile(const wxString& filename)
{
wxFile file(filename, wxFile::read);
wxFile file(filename, wxFile::read);
- if (!file.IsOpened())
- return FALSE;
-
- wxString contents;
- off_t len = file.Length();
-
- wxChar *buf = contents.GetWriteBuf(len);
- bool success = (file.Read(buf, len) == len);
- contents.UngetWriteBuf();
-
- if (success)
- SetText(contents);
- EmptyUndoBuffer();
- SetSavePoint();
+ wxString contents;
+ off_t len = file.Length();
+
+ if (len > 0)
+ {
+ wxChar *buf = contents.GetWriteBuf(len);
+ success = (file.Read(buf, len) == len);
+ contents.UngetWriteBuf();
+ }
+ else
+ success = true; // empty file is ok
+
+ if (success)
+ {
+ SetText(contents);
+ EmptyUndoBuffer();
+ SetSavePoint();
+ }
bool wxStyledTextCtrl::LoadFile(const wxString& filename)
{
bool wxStyledTextCtrl::LoadFile(const wxString& filename)
{
wxFile file(filename, wxFile::read);
wxFile file(filename, wxFile::read);
- if (!file.IsOpened())
- return FALSE;
-
- wxString contents;
- off_t len = file.Length();
-
- wxChar *buf = contents.GetWriteBuf(len);
- bool success = (file.Read(buf, len) == len);
- contents.UngetWriteBuf();
-
- if (success)
- SetText(contents);
- EmptyUndoBuffer();
- SetSavePoint();
+ wxString contents;
+ off_t len = file.Length();
+
+ if (len > 0)
+ {
+ wxChar *buf = contents.GetWriteBuf(len);
+ success = (file.Read(buf, len) == len);
+ contents.UngetWriteBuf();
+ }
+ else
+ success = true; // empty file is ok
+
+ if (success)
+ {
+ SetText(contents);
+ EmptyUndoBuffer();
+ SetSavePoint();
+ }