Changed request string to c++11 raw string

Former-commit-id: 4fae155658d4ded771f0b01974d4e47bb15f58f4
This commit is contained in:
johan 2013-10-14 18:21:36 +02:00
parent f8c20bebeb
commit bb620f6408
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ XBMCVideoChecker::XBMCVideoChecker(const std::string & address, uint16_t port, u
QObject(), QObject(),
_address(QString::fromStdString(address)), _address(QString::fromStdString(address)),
_port(port), _port(port),
_request("{\"jsonrpc\":\"2.0\",\"method\":\"Player.GetActivePlayers\",\"id\":666}"), _request(R"({"jsonrpc":"2.0","method":"Player.GetActivePlayers","id":666})"),
_timer(), _timer(),
_socket(), _socket(),
_grabVideo(grabVideo), _grabVideo(grabVideo),