summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorsu-v <suv-sf@users.sf.net>2017-07-06 08:20:40 +0000
committersu-v <suv-sf@users.sf.net>2017-07-06 08:20:40 +0000
commit188bbd799746fc05de9c18a0957793323f747178 (patch)
treee22d782618a236928637943535af01a30f75e60b /src
parentAdd libsoup to CI builder (diff)
downloadinkscape-188bbd799746fc05de9c18a0957793323f747178.tar.gz
inkscape-188bbd799746fc05de9c18a0957793323f747178.zip
Update MSYS2 port for new dependency (libsoup)
- update script to install dependencies - update InstallMSYS2.cmake - fix Windows builds (uint -> unsigned int)
Diffstat (limited to 'src')
-rw-r--r--src/io/http.cpp2
-rw-r--r--src/io/http.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/io/http.cpp b/src/io/http.cpp
index 657e6ac6a..0f2bbd360 100644
--- a/src/io/http.cpp
+++ b/src/io/http.cpp
@@ -87,7 +87,7 @@ void _get_file_callback(SoupSession *session, SoupMessage *msg, gpointer user_da
* your func will be called in a blocking way BEFORE this function returns.
*
*/
-Glib::ustring get_file(Glib::ustring uri, uint timeout, callback func) {
+Glib::ustring get_file(Glib::ustring uri, unsigned int timeout, callback func) {
SoupURI *s_uri = soup_uri_new(uri.c_str());
const char *host = soup_uri_get_host(s_uri);
diff --git a/src/io/http.h b/src/io/http.h
index dd58fe9a3..8327ca79d 100644
--- a/src/io/http.h
+++ b/src/io/http.h
@@ -27,7 +27,7 @@ namespace Inkscape {
namespace IO {
namespace HTTP {
- Glib::ustring get_file(Glib::ustring uri, uint timeout=0, std::function<void(Glib::ustring)> func=NULL);
+ Glib::ustring get_file(Glib::ustring uri, unsigned int timeout=0, std::function<void(Glib::ustring)> func=NULL);
}
}