mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-10-20 06:51:10 +08:00
use integers instead of size_t for object identifiers.
Need a better solution for semantics (perl used undef, python would have used None).
This commit is contained in:
parent
3ff475d02b
commit
702da13458
@ -13,7 +13,7 @@ namespace Slic3r { namespace GUI {
|
|||||||
class PlaterObject {
|
class PlaterObject {
|
||||||
public:
|
public:
|
||||||
std::string name {""};
|
std::string name {""};
|
||||||
size_t identifier {0U};
|
int identifier {0};
|
||||||
std::string input_file {""};
|
std::string input_file {""};
|
||||||
int input_file_obj_idx {-1};
|
int input_file_obj_idx {-1};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user