diff options
Diffstat (limited to 'source/frontend/StarActionBar.cpp')
-rw-r--r-- | source/frontend/StarActionBar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/frontend/StarActionBar.cpp b/source/frontend/StarActionBar.cpp index acaa3d1..15e1bd5 100644 --- a/source/frontend/StarActionBar.cpp +++ b/source/frontend/StarActionBar.cpp @@ -20,7 +20,7 @@ namespace Star { ActionBar::ActionBar(MainInterfacePaneManager* paneManager, PlayerPtr player) { m_paneManager = paneManager; - m_player = move(player); + m_player = std::move(player); auto assets = Root::singleton().assets(); |