diff --git a/Telegram/SourceFiles/kotato/json_settings.cpp b/Telegram/SourceFiles/kotato/json_settings.cpp index 7b1fab50a..2c68513a8 100644 --- a/Telegram/SourceFiles/kotato/json_settings.cpp +++ b/Telegram/SourceFiles/kotato/json_settings.cpp @@ -153,6 +153,7 @@ bool ReadStringOption(QJsonObject obj, QString key, std::function return (readValueResult && readResult); } +/* bool ReadDoubleOption(QJsonObject obj, QString key, std::function callback) { auto readResult = false; auto readValueResult = ReadOption(obj, key, [&](QJsonValue v) { @@ -163,6 +164,7 @@ bool ReadDoubleOption(QJsonObject obj, QString key, std::function }); return (readValueResult && readResult); } +*/ bool ReadIntOption(QJsonObject obj, QString key, std::function callback) { auto readResult = false;