Fix error in JSONtoRedactionTarget

Change-Id: I6e82f86adfc6e1ebff2d9377dd011d0d97648848
Reviewed-on: https://gerrit.libreoffice.org/75602
Tested-by: Jenkins
Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com>
This commit is contained in:
Muhammet Kara 2019-07-14 23:51:44 +03:00
parent 6604b66be0
commit d56b08596b

View File

@ -384,7 +384,7 @@ RedactionTarget* JSONtoRedactionTarget(const boost::property_tree::ptree::value_
{
OUString sName = OUString::fromUtf8(rValue.second.get<std::string>("sName").c_str());
RedactionTargetType eType
= static_cast<RedactionTargetType>(atoi(rValue.second.get<std::string>("sName").c_str()));
= static_cast<RedactionTargetType>(atoi(rValue.second.get<std::string>("eType").c_str()));
OUString sContent = OUString::fromUtf8(rValue.second.get<std::string>("sContent").c_str());
bool bCaseSensitive
= OUString::fromUtf8(rValue.second.get<std::string>("bCaseSensitive").c_str()).toBoolean();