Update profilestorecombobox.cc

Do not use std::move on return
This commit is contained in:
Ingo Weyrich
2019-08-07 16:53:44 +02:00
committed by GitHub
parent d44a40582a
commit cf1d7e5920

View File

@@ -334,7 +334,7 @@ Gtk::TreeIter ProfileStoreComboBox::getRowFromLabel (Glib::ustring name)
const ProfileStoreEntry *pse = currRow[methodColumns.profileStoreEntry];
if (pse->label == name) {
return std::move(currRow);
return currRow;
}
}
}