Changeset 132 for smplayer/trunk/src/simplehttp.cpp
- Timestamp:
- May 14, 2012, 5:53:37 PM (13 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 130
- Property svn:mergeinfo changed
-
smplayer/trunk/src/simplehttp.cpp
r128 r132 74 74 QString location = responseHeader.value("Location"); 75 75 qDebug("SimpleHttp::readResponseHeader: Location: '%s'", location.toLatin1().constData()); 76 http_get_id = get( location ); 76 /* http_get_id = get( location ); */ 77 download(location); 77 78 } 78 79 else … … 87 88 qDebug("SimpleHttp::httpRequestFinished: http_get_id: %d request_id: %d, error: %d", http_get_id, request_id, error); 88 89 89 90 if (request_id != http_get_id) return; 90 91 91 92 downloaded_text += readAll();
Note:
See TracChangeset
for help on using the changeset viewer.