Mercurial > hg > orthanc
diff OrthancCppClient/Study.cpp @ 496:7f7a2d174acb laaw
preparing Laaw packaging
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 17 Jul 2013 17:07:12 +0200 |
parents | f3d4193c571a |
children | ec19da4a1fe7 |
line wrap: on
line diff
--- a/OrthancCppClient/Study.cpp Wed Jul 17 13:45:28 2013 +0200 +++ b/OrthancCppClient/Study.cpp Wed Jul 17 17:07:12 2013 +0200 @@ -40,7 +40,8 @@ void Study::ReadStudy() { Orthanc::HttpClient client(connection_.GetHttpClient()); - client.SetUrl(connection_.GetOrthancUrl() + "/studies/" + id_); + client.SetUrl(std::string(connection_.GetOrthancUrl()) + "/studies/" + id_); + Json::Value v; if (!client.Apply(study_)) { @@ -51,7 +52,8 @@ Orthanc::IDynamicObject* Study::GetFillerItem(size_t index) { Json::Value::ArrayIndex tmp = static_cast<Json::Value::ArrayIndex>(index); - return new Series(connection_, study_["Series"][tmp].asString()); + std::string id = study_["Series"][tmp].asString(); + return new Series(connection_, id.c_str()); } Study::Study(const OrthancConnection& connection,