From a542daed7f19fc53349b271d8690a89c684abebe Mon Sep 17 00:00:00 2001 From: heckflosse Date: Thu, 16 May 2019 13:43:05 +0200 Subject: [PATCH] locallab: use std::move --- rtgui/locallab.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/locallab.cc b/rtgui/locallab.cc index 061d6242a..f7faea753 100644 --- a/rtgui/locallab.cc +++ b/rtgui/locallab.cc @@ -1035,7 +1035,7 @@ Locallab::Locallab(): ss += Glib::ustring::compose(" (%1)", M("TP_DIRPYREQUALIZER_LUMACOARSEST")); } - multiplier[i] = Gtk::manage(new Adjuster(ss, 0.0, 4.0, 0.01, 1.0)); + multiplier[i] = Gtk::manage(new Adjuster(std::move(ss), 0.0, 4.0, 0.01, 1.0)); multiplier[i]->setAdjusterListener(this); }