Commit 746006f7939ed36b95a648351e662fee48afc663
- Diff rendering mode:
- inline
- side by side
src/lastfm.cpp
(2 / 1)
|   | |||
| 23 | 23 | #include "enginecontroller.h" | |
| 24 | 24 | #include "lastfm.h" | |
| 25 | 25 | ||
| 26 | #include <qdeepcopy.h> | ||
| 26 | 27 | #include <qdom.h> | |
| 27 | 28 | #include <qhttp.h> | |
| 28 | 29 | #include <qlabel.h> | |
| … | … | ||
| 247 | 247 | if ( http.error() != QHttp::NoError ) | |
| 248 | 248 | return false; | |
| 249 | 249 | ||
| 250 | const QString result( http.readAll() ); | ||
| 250 | const QString result( QDeepCopy<QString>( http.readAll() ) ); | ||
| 251 | 251 | ||
| 252 | 252 | debug() << "result: " << result << endl; | |
| 253 | 253 |

