diff data/fileio/RemoteFile.cpp @ 278:9a13687c078b

* Add SingleColourLayer to manage colours for layers that have a single predominant colour (i.e. most of them).
author Chris Cannam
date Thu, 12 Jul 2007 16:14:59 +0000
parents ce6f65ab3327
children 7802b0e2b0ff
line wrap: on
line diff
--- a/data/fileio/RemoteFile.cpp	Wed Jul 11 17:21:37 2007 +0000
+++ b/data/fileio/RemoteFile.cpp	Thu Jul 12 16:14:59 2007 +0000
@@ -64,7 +64,9 @@
                 this, SLOT(dataReadProgress(int, int)));
         connect(m_http, SIGNAL(responseHeaderReceived(const QHttpResponseHeader &)),
                 this, SLOT(httpResponseHeaderReceived(const QHttpResponseHeader &)));
-        m_http->get(url.path(), m_localFile);
+        QString path = url.path();
+        std::cerr << "RemoteFile: path is \"" << path.toStdString() << "\"" << std::endl;
+        m_http->get(path, m_localFile);
 
     } else if (scheme == "ftp") {