mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-07-25 06:54:43 +00:00
Fix warnings.
This commit is contained in:
committed by
John Preston
parent
5bb03928a1
commit
d53ee9c241
@@ -53,7 +53,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
|
||||
namespace {
|
||||
|
||||
constexpr auto kMaxOptionsCount = TodoListData::kMaxOptions;
|
||||
constexpr auto kWarnTitleLimit = 12;
|
||||
constexpr auto kWarnTaskLimit = 24;
|
||||
constexpr auto kErrorLimit = 99;
|
||||
|
||||
@@ -55,7 +55,6 @@ constexpr auto kSuccessFadeInDuration = crl::time(300);
|
||||
constexpr auto kSuccessExpandDuration = crl::time(400);
|
||||
constexpr auto kSuccessExpandStart = crl::time(100);
|
||||
constexpr auto kProgressFadeInDuration = crl::time(300);
|
||||
constexpr auto kFailureFadeInDuration = crl::time(300);
|
||||
|
||||
[[nodiscard]] QString FormatPercent(int permille) {
|
||||
const auto rounded = (permille + 5) / 10;
|
||||
|
||||
@@ -37,8 +37,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
namespace Calls::Group {
|
||||
namespace {
|
||||
|
||||
constexpr auto kPasswordCharAmount = 24;
|
||||
|
||||
void StartWithBox(
|
||||
not_null<Ui::GenericBox*> box,
|
||||
Fn<void()> done,
|
||||
|
||||
@@ -18,8 +18,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
|
||||
namespace {
|
||||
|
||||
constexpr auto kShortPollTimeout = 30 * crl::time(1000);
|
||||
|
||||
const TodoListItem *ItemById(const std::vector<TodoListItem> &list, int id) {
|
||||
const auto i = ranges::find(list, id, &TodoListItem::id);
|
||||
return (i != end(list)) ? &*i : nullptr;
|
||||
|
||||
@@ -63,7 +63,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
namespace HistoryView {
|
||||
namespace {
|
||||
|
||||
constexpr auto kSummarizeThreshold = 512;
|
||||
constexpr auto kPlayStatusLimit = 2;
|
||||
constexpr auto kMaxWidth = (1 << 16) - 1;
|
||||
constexpr auto kMaxNiceToReadLines = 6;
|
||||
|
||||
@@ -32,8 +32,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
namespace HistoryView {
|
||||
namespace {
|
||||
|
||||
constexpr auto kPremiumToastDuration = 5 * crl::time(1000);
|
||||
|
||||
[[nodiscard]] not_null<Ui::AbstractButton*> MakeUndoButton(
|
||||
not_null<QWidget*> parent,
|
||||
int width,
|
||||
|
||||
@@ -30,7 +30,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
namespace Info::GlobalMedia {
|
||||
namespace {
|
||||
|
||||
constexpr auto kPerPage = 50;
|
||||
constexpr auto kPreloadedScreensCount = 4;
|
||||
constexpr auto kPreloadedScreensCountFull
|
||||
= kPreloadedScreensCount + 1 + kPreloadedScreensCount;
|
||||
|
||||
@@ -14,7 +14,6 @@ namespace Media::Audio {
|
||||
namespace {
|
||||
|
||||
constexpr auto kMaxDuration = 3 * crl::time(1000);
|
||||
constexpr auto kMaxStreams = 2;
|
||||
constexpr auto kFrameSize = 4096;
|
||||
|
||||
[[nodiscard]] QByteArray ConvertAndCut(const QByteArray &bytes) {
|
||||
|
||||
@@ -35,7 +35,6 @@ namespace Settings {
|
||||
namespace {
|
||||
|
||||
constexpr auto kDay = Data::WorkingInterval::kDay;
|
||||
constexpr auto kWeek = Data::WorkingInterval::kWeek;
|
||||
constexpr auto kInNextDayMax = Data::WorkingInterval::kInNextDayMax;
|
||||
|
||||
class WorkingHours : public Section<WorkingHours> {
|
||||
|
||||
@@ -30,8 +30,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
namespace Ui {
|
||||
namespace {
|
||||
|
||||
constexpr auto kTonMultiplier = uint64(1000000000);
|
||||
|
||||
[[nodiscard]] QString FormatEntity(CollectibleType type, QString entity) {
|
||||
switch (type) {
|
||||
case CollectibleType::Phone: {
|
||||
|
||||
@@ -48,7 +48,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
namespace Ui::BotWebView {
|
||||
namespace {
|
||||
|
||||
constexpr auto kProcessClickTimeout = crl::time(1000);
|
||||
constexpr auto kClipboardReadTimeout = crl::time(10000);
|
||||
constexpr auto kProgressDuration = crl::time(200);
|
||||
constexpr auto kProgressOpacity = 0.3;
|
||||
|
||||
@@ -37,8 +37,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
namespace Ui {
|
||||
namespace {
|
||||
|
||||
constexpr auto kAutoCollapseTimeout = 4 * crl::time(1000);
|
||||
|
||||
using Counters = Data::StarsRating;
|
||||
|
||||
[[nodiscard]] Counters AdjustByReached(Counters data) {
|
||||
|
||||
@@ -22,7 +22,6 @@ namespace Ui {
|
||||
namespace {
|
||||
|
||||
constexpr auto kSelectAnimationDuration = crl::time(150);
|
||||
constexpr auto kUnsetColorIndex = uint8(0xFF);
|
||||
constexpr auto kProfileColorIndexCount = uint8(8);
|
||||
|
||||
} // namespace
|
||||
|
||||
Reference in New Issue
Block a user