Handle all enum values

This commit is contained in:
Berkus Decker 2017-12-20 00:13:05 +02:00 committed by Berkus Decker
parent b25df92d35
commit 59ee61a90d
1 changed files with 1 additions and 2 deletions

View File

@ -91,9 +91,8 @@ 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 default: return QString();
} }
return QString();
})(); })();
if (!text.isEmpty()) { if (!text.isEmpty()) {
p.setFont(st::linkFont); p.setFont(st::linkFont);