X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..6e2fef031b643ceda4ff4bd6f1920ecb20780c6e:/src/common/fs_inet.cpp?ds=sidebyside diff --git a/src/common/fs_inet.cpp b/src/common/fs_inet.cpp index 79fe5b3662..7e9ce0fe02 100644 --- a/src/common/fs_inet.cpp +++ b/src/common/fs_inet.cpp @@ -42,7 +42,7 @@ class wxTemporaryFileInputStream : public wxFileInputStream public: wxTemporaryFileInputStream(const wxString& filename) : wxFileInputStream(filename), m_filename(filename) {} - + ~wxTemporaryFileInputStream() { // NB: copied from wxFileInputStream dtor, we need to do it before @@ -52,7 +52,7 @@ public: delete m_file; m_file_destroy = false; } - wxRemoveFile(m_filename); + wxRemoveFile(m_filename); } protected: @@ -91,7 +91,7 @@ bool wxInternetFSHandler::CanOpen(const wxString& location) return (url.GetError() == wxURL_NOERR); } - return FALSE; + return false; } @@ -117,7 +117,7 @@ wxFSFile* wxInternetFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), s->Read(sout); } delete s; - + return new wxFSFile(new wxTemporaryFileInputStream(tmpfile), right, content, @@ -141,7 +141,7 @@ class wxFileSystemInternetModule : public wxModule virtual bool OnInit() { wxFileSystem::AddHandler(new wxInternetFSHandler); - return TRUE; + return true; } virtual void OnExit() {} };