From 4c1922a943d833ae14157e9cf7bb2364d477fed9 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Mon, 7 May 2018 21:30:28 -0500 Subject: [PATCH] Add LogChannel designation as a protected member. --- src/GUI/Plater/PlaterObject.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/GUI/Plater/PlaterObject.hpp b/src/GUI/Plater/PlaterObject.hpp index ae53ec0fd..3d06601c3 100644 --- a/src/GUI/Plater/PlaterObject.hpp +++ b/src/GUI/Plater/PlaterObject.hpp @@ -33,6 +33,8 @@ public: Slic3r::ExPolygonCollection& transform_thumbnail(const Slic3r::Model model, int obj_idx); Slic3r::ExPolygonCollection& transform_thumbnail(const std::shared_ptr model, int obj_idx); +protected: + const std::string LogChannel {"PlaterObject"}; };