From 2c2ad2c992625b38f15eee2a9614fdd4f27e8381 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Sat, 5 May 2018 16:13:58 -0500 Subject: [PATCH] Changed identifier type to size_t (needs to be numerical to do math on it) --- src/GUI/Plater/PlaterObject.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI/Plater/PlaterObject.hpp b/src/GUI/Plater/PlaterObject.hpp index 72b71d88e..7fb6602cb 100644 --- a/src/GUI/Plater/PlaterObject.hpp +++ b/src/GUI/Plater/PlaterObject.hpp @@ -13,7 +13,7 @@ namespace Slic3r { namespace GUI { class PlaterObject { public: wxString name {L""}; - wxString identifier {L""}; + size_t identifier {0U}; wxString input_file {L""}; int input_file_obj_idx {-1};