- Timestamp:
- Dec 27, 2011, 5:44:12 PM (14 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
-
Property svn:mergeinfo
set to
/smplayer/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
smplayer/trunk/src/findsubtitles/filedownloader/filedownloader.cpp
r114 r119 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 0Ricardo Villalba <rvm@escomposlinux.org>2 Copyright (C) 2006-2011 Ricardo Villalba <rvm@escomposlinux.org> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 62 62 63 63 http_request_aborted = false; 64 http_get_id = http->get(url.path(), &buffer);64 http_get_id = http->get(url.path()); 65 65 66 66 setLabelText(tr("Downloading %1").arg(url.toString())); … … 87 87 emit downloadFailed(http->errorString()); 88 88 } else { 89 emit downloadFinished(buffer.data());89 emit downloadFinished(http->readAll()); 90 90 } 91 91 }
Note:
See TracChangeset
for help on using the changeset viewer.