diff options
Diffstat (limited to 'source/frontend/StarInventory.cpp')
-rw-r--r-- | source/frontend/StarInventory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/frontend/StarInventory.cpp b/source/frontend/StarInventory.cpp index b73b33e..390558c 100644 --- a/source/frontend/StarInventory.cpp +++ b/source/frontend/StarInventory.cpp @@ -25,8 +25,8 @@ namespace Star { InventoryPane::InventoryPane(MainInterface* parent, PlayerPtr player, ContainerInteractorPtr containerInteractor) { m_parent = parent; - m_player = move(player); - m_containerInteractor = move(containerInteractor); + m_player = std::move(player); + m_containerInteractor = std::move(containerInteractor); GuiReader invWindowReader; auto config = Root::singleton().assets()->json("/interface/windowconfig/playerinventory.config"); |