mirror of https://github.com/procxx/kepka.git
Clean up formatting
This commit is contained in:
parent
3c59d89ea8
commit
ee9afa4d8b
|
@ -34,9 +34,12 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
#include "storage/file_download.h"
|
#include "storage/file_download.h"
|
||||||
#include "window/themes/window_theme.h"
|
#include "window/themes/window_theme.h"
|
||||||
|
|
||||||
PeerListBox::PeerListBox(QWidget*, std::unique_ptr<PeerListController> controller, base::lambda<void(not_null<PeerListBox*>)> init)
|
PeerListBox::PeerListBox(QWidget*
|
||||||
: _controller(std::move(controller))
|
, std::unique_ptr<PeerListController> controller
|
||||||
, _init(std::move(init)) {
|
, base::lambda<void(not_null<PeerListBox*>)> init)
|
||||||
|
: _controller(std::move(controller))
|
||||||
|
, _init(std::move(init))
|
||||||
|
{
|
||||||
Expects(_controller != nullptr);
|
Expects(_controller != nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue