mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-19 09:01:15 +02:00
make_movable -> std::make_unique
This commit is contained in:
@@ -312,7 +312,7 @@ protected:
|
||||
void ExpandingToolBar::RecursivelyPushEventHandlers(wxWindow *win)
|
||||
{
|
||||
if (!mWindowHash[win]) {
|
||||
mHandlers.push_back(make_movable<ExpandingToolBarEvtHandler>
|
||||
mHandlers.push_back(std::make_unique<ExpandingToolBarEvtHandler>
|
||||
(this, win, win->GetEventHandler()));
|
||||
mWindowHash[win] = 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user