mirror of https://github.com/procxx/kepka.git
Suppress warnings for unhandled enum values
This commit is contained in:
parent
0f1254586c
commit
941b306f7a
|
@ -1468,6 +1468,7 @@ namespace {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
|
case PeerData::NotLoaded: break;
|
||||||
}
|
}
|
||||||
return i.value();
|
return i.value();
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,7 @@ QString getButtonText(MediaOverviewType type, int count) {
|
||||||
case OverviewFiles: return lng_profile_files(lt_count, count);
|
case OverviewFiles: return lng_profile_files(lt_count, count);
|
||||||
case OverviewVoiceFiles: return lng_profile_audios(lt_count, count);
|
case OverviewVoiceFiles: return lng_profile_audios(lt_count, count);
|
||||||
case OverviewLinks: return lng_profile_shared_links(lt_count, count);
|
case OverviewLinks: return lng_profile_shared_links(lt_count, count);
|
||||||
|
case OverviewChatPhotos: case OverviewCount: return QString(); // temp
|
||||||
}
|
}
|
||||||
return QString();
|
return QString();
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,8 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
void InitFromCommandLine(int argc, char *argv[]);
|
void InitFromCommandLine(int argc, char *argv[]);
|
||||||
|
|
||||||
extern bool gDebug;
|
extern bool gDebug;
|
||||||
|
@ -144,6 +146,8 @@ T convertScale(T v) {
|
||||||
case dbisOneAndQuarter: return qRound(float64(v) * 1.25 - 0.01);
|
case dbisOneAndQuarter: return qRound(float64(v) * 1.25 - 0.01);
|
||||||
case dbisOneAndHalf: return qRound(float64(v) * 1.5 - 0.01);
|
case dbisOneAndHalf: return qRound(float64(v) * 1.5 - 0.01);
|
||||||
case dbisTwo: return v * 2;
|
case dbisTwo: return v * 2;
|
||||||
|
case dbisAuto: case dbisOne: return v;
|
||||||
|
case dbisScaleCount: assert(false); // temp
|
||||||
}
|
}
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
|
|
@ -91,6 +91,7 @@ void DownloadPathState::paintEvent(QPaintEvent *e) {
|
||||||
case State::Clearing: return lang(lng_download_path_clearing);
|
case State::Clearing: return lang(lng_download_path_clearing);
|
||||||
case State::Cleared: return lang(lng_download_path_cleared);
|
case State::Cleared: return lang(lng_download_path_cleared);
|
||||||
case State::ClearFailed: return lang(lng_download_path_clear_failed);
|
case State::ClearFailed: return lang(lng_download_path_clear_failed);
|
||||||
|
case State::Empty: case State::Exists: assert(false); // temp
|
||||||
}
|
}
|
||||||
return QString();
|
return QString();
|
||||||
})();
|
})();
|
||||||
|
|
|
@ -39,6 +39,7 @@ QString scaleLabel(DBIScale scale) {
|
||||||
case dbisOneAndQuarter: return qsl("125%");
|
case dbisOneAndQuarter: return qsl("125%");
|
||||||
case dbisOneAndHalf: return qsl("150%");
|
case dbisOneAndHalf: return qsl("150%");
|
||||||
case dbisTwo: return qsl("200%");
|
case dbisTwo: return qsl("200%");
|
||||||
|
case dbisAuto: case dbisScaleCount: assert(false); // temp
|
||||||
}
|
}
|
||||||
return QString();
|
return QString();
|
||||||
}
|
}
|
||||||
|
@ -74,6 +75,7 @@ void ScaleWidget::onAutoChanged() {
|
||||||
case dbisOneAndQuarter: newScale = dbisOne; break;
|
case dbisOneAndQuarter: newScale = dbisOne; break;
|
||||||
case dbisOneAndHalf: newScale = dbisOneAndQuarter; break;
|
case dbisOneAndHalf: newScale = dbisOneAndQuarter; break;
|
||||||
case dbisTwo: newScale = dbisOneAndHalf; break;
|
case dbisTwo: newScale = dbisOneAndHalf; break;
|
||||||
|
case dbisAuto: case dbisScaleCount: assert(false); // temp
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -96,6 +96,7 @@ QSize readGeneratedSize(const IconMask *mask, DBIScale scale) {
|
||||||
case dbisOneAndQuarter: return QSize(pxAdjust(width, 5), pxAdjust(height, 5));
|
case dbisOneAndQuarter: return QSize(pxAdjust(width, 5), pxAdjust(height, 5));
|
||||||
case dbisOneAndHalf: return QSize(pxAdjust(width, 6), pxAdjust(height, 6));
|
case dbisOneAndHalf: return QSize(pxAdjust(width, 6), pxAdjust(height, 6));
|
||||||
case dbisTwo: return QSize(width * 2, height * 2);
|
case dbisTwo: return QSize(width * 2, height * 2);
|
||||||
|
case dbisAuto: case dbisScaleCount: assert(false); // temp
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
Unexpected("Bad data in generated icon!");
|
Unexpected("Bad data in generated icon!");
|
||||||
|
|
|
@ -595,6 +595,7 @@ public:
|
||||||
auto &link = links[lnkIndex - maxLnkIndex - 1];
|
auto &link = links[lnkIndex - maxLnkIndex - 1];
|
||||||
ClickHandlerPtr handler;
|
ClickHandlerPtr handler;
|
||||||
switch (link.type) {
|
switch (link.type) {
|
||||||
|
case EntityInTextInvalid: case EntityInTextBold: case EntityInTextItalic: assert(false); // temp
|
||||||
case EntityInTextCustomUrl: handler = MakeShared<HiddenUrlClickHandler>(link.data); break;
|
case EntityInTextCustomUrl: handler = MakeShared<HiddenUrlClickHandler>(link.data); break;
|
||||||
case EntityInTextEmail:
|
case EntityInTextEmail:
|
||||||
case EntityInTextUrl: handler = MakeShared<UrlClickHandler>(link.data, link.displayStatus == LinkDisplayedFull); break;
|
case EntityInTextUrl: handler = MakeShared<UrlClickHandler>(link.data, link.displayStatus == LinkDisplayedFull); break;
|
||||||
|
|
|
@ -1514,6 +1514,7 @@ MTPVector<MTPMessageEntity> EntitiesToMTP(const EntitiesInText &entities, Conver
|
||||||
auto offset = MTP_int(entity.offset());
|
auto offset = MTP_int(entity.offset());
|
||||||
auto length = MTP_int(entity.length());
|
auto length = MTP_int(entity.length());
|
||||||
switch (entity.type()) {
|
switch (entity.type()) {
|
||||||
|
case EntityInTextInvalid: assert(false); // temp
|
||||||
case EntityInTextUrl: v.push_back(MTP_messageEntityUrl(offset, length)); break;
|
case EntityInTextUrl: v.push_back(MTP_messageEntityUrl(offset, length)); break;
|
||||||
case EntityInTextCustomUrl: v.push_back(MTP_messageEntityTextUrl(offset, length, MTP_string(entity.data()))); break;
|
case EntityInTextCustomUrl: v.push_back(MTP_messageEntityTextUrl(offset, length, MTP_string(entity.data()))); break;
|
||||||
case EntityInTextEmail: v.push_back(MTP_messageEntityEmail(offset, length)); break;
|
case EntityInTextEmail: v.push_back(MTP_messageEntityEmail(offset, length)); break;
|
||||||
|
|
Loading…
Reference in New Issue