2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

Renamed class back from AdaptiveModern to Adaptive.

This commit is contained in:
23rd
2021-05-27 16:54:24 +03:00
parent 5b4d442799
commit 2ed3543b53
11 changed files with 37 additions and 37 deletions

View File

@@ -41,7 +41,7 @@ namespace Window {
Controller::Controller()
: _widget(this)
, _adaptive(std::make_unique<AdaptiveModern>())
, _adaptive(std::make_unique<Adaptive>())
, _isActiveTimer([=] { updateIsActive(); }) {
_widget.init();
}
@@ -368,7 +368,7 @@ void Controller::showLogoutConfirmation() {
callback));
}
Window::AdaptiveModern &Controller::adaptive() const {
Window::Adaptive &Controller::adaptive() const {
return *_adaptive;
}