mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-08-31 06:35:14 +00:00
Using standard library instead of std_ namespace.
Currently tested only in VS2015.
This commit is contained in:
@@ -107,7 +107,7 @@ protected:
|
||||
} else {
|
||||
save.reset(new DocumentSaveClickHandler(document));
|
||||
}
|
||||
setLinks(MakeShared<DocumentOpenClickHandler>(document), std_::move(save), MakeShared<DocumentCancelClickHandler>(document));
|
||||
setLinks(MakeShared<DocumentOpenClickHandler>(document), std::move(save), MakeShared<DocumentCancelClickHandler>(document));
|
||||
}
|
||||
|
||||
void step_radial(TimeMs ms, bool timer);
|
||||
@@ -129,7 +129,7 @@ protected:
|
||||
return false;
|
||||
}
|
||||
|
||||
std_::unique_ptr<Ui::RadialAnimation> _radial;
|
||||
std::unique_ptr<Ui::RadialAnimation> _radial;
|
||||
Animation _a_iconOver;
|
||||
|
||||
};
|
||||
@@ -194,7 +194,7 @@ public:
|
||||
private:
|
||||
void ensureCheckboxCreated();
|
||||
|
||||
std_::unique_ptr<PhotoVideoCheckbox> _check;
|
||||
std::unique_ptr<PhotoVideoCheckbox> _check;
|
||||
|
||||
PhotoData *_data;
|
||||
ClickHandlerPtr _link;
|
||||
@@ -235,7 +235,7 @@ protected:
|
||||
private:
|
||||
void ensureCheckboxCreated();
|
||||
|
||||
std_::unique_ptr<PhotoVideoCheckbox> _check;
|
||||
std::unique_ptr<PhotoVideoCheckbox> _check;
|
||||
|
||||
DocumentData *_data;
|
||||
StatusText _status;
|
||||
|
Reference in New Issue
Block a user