diff options
author | randomdan <randomdan@localhost> | 2011-07-21 00:17:42 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-07-21 00:17:42 +0000 |
commit | 2c7a2386b269faed970e0e97c509c1f0fcb8ffa0 (patch) | |
tree | 0a7ee021fb591eb6a950e1ac8b517e09b2c9fd24 | |
parent | Fix compilation against old Boost (diff) | |
download | project2-2c7a2386b269faed970e0e97c509c1f0fcb8ffa0.tar.bz2 project2-2c7a2386b269faed970e0e97c509c1f0fcb8ffa0.tar.xz project2-2c7a2386b269faed970e0e97c509c1f0fcb8ffa0.zip |
Fix order of html and warnings flags in XslCachePopulator
-rw-r--r-- | project2/xslRowsCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/xslRowsCache.cpp b/project2/xslRowsCache.cpp index 73b4c42..7f6c8ec 100644 --- a/project2/xslRowsCache.cpp +++ b/project2/xslRowsCache.cpp @@ -11,7 +11,7 @@ SimpleMessageException(DownloadFailed); class XslCachePopulator : public CurlCompleteCallback { public: - XslCachePopulator(CurlHandle::Ptr ch, const Glib::ustring & u, bool w, bool h, const char * e) : + XslCachePopulator(CurlHandle::Ptr ch, const Glib::ustring & u, bool h, bool w, const char * e) : CurlCompleteCallback(ch), url(u), html(h), |