summaryrefslogtreecommitdiff
path: root/wx+/http.h
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/http.h')
-rw-r--r--wx+/http.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/wx+/http.h b/wx+/http.h
index e3942e67..febe8f24 100644
--- a/wx+/http.h
+++ b/wx+/http.h
@@ -17,8 +17,8 @@ namespace zen
Windows: WinInet-based => may be called from worker thread
Linux: wxWidgets-based => don't call from worker thread
*/
-std::string sendHttpPost(const std::wstring& url, const std::wstring& userAgent, const std::vector<std::pair<std::string, std::string>>& postParams); //throw FileError
-std::string sendHttpGet (const std::wstring& url, const std::wstring& userAgent); //throw FileError
+std::string sendHttpPost(const std::wstring& url, const std::wstring& userAgent, const std::vector<std::pair<std::string, std::string>>& postParams); //throw SysError
+std::string sendHttpGet (const std::wstring& url, const std::wstring& userAgent); //throw SysError
bool internetIsAlive(); //noexcept
}
bgstack15