From 46d57426bcdd76c2299948f52c634678705fce8a Mon Sep 17 00:00:00 2001 From: Adam Reichold Date: Sat, 9 Jan 2016 14:31:25 +0100 Subject: [PATCH] Fix one more usage of the deprecated std::auto_ptr that slipped through due to the order merging pull requests. --- rtgui/editorpanel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/editorpanel.h b/rtgui/editorpanel.h index 6de9928bd..e506e1583 100644 --- a/rtgui/editorpanel.h +++ b/rtgui/editorpanel.h @@ -85,7 +85,7 @@ protected: Gtk::Button* navPrev; class MonitorProfileSelector; - std::auto_ptr monitorProfile; + std::unique_ptr monitorProfile; ImageAreaPanel* iareapanel; PreviewHandler* previewHandler;