mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-30 22:16:14 +00:00
Using standard library instead of std_ namespace.
Currently tested only in VS2015.
This commit is contained in:
@@ -329,7 +329,7 @@ bool MainWindow::minimizeToTray() {
|
||||
void MainWindow::showRightColumn(object_ptr<TWidget> widget) {
|
||||
auto wasWidth = width();
|
||||
auto wasRightWidth = _rightColumn ? _rightColumn->width() : 0;
|
||||
_rightColumn = std_::move(widget);
|
||||
_rightColumn = std::move(widget);
|
||||
if (_rightColumn) {
|
||||
_rightColumn->setParent(this);
|
||||
_rightColumn->show();
|
||||
|
Reference in New Issue
Block a user