2
0
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:
John Preston
2017-02-21 16:45:56 +03:00
parent 27f015561a
commit ffc557a0f9
201 changed files with 892 additions and 1386 deletions

View File

@@ -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;