Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xs
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2019-06-20 17:15:09 +0300
committerbubnikv <bubnikv@gmail.com>2019-06-20 17:15:09 +0300
commit35b3fd317623b98153a0b91d3f51c784d2cc0a20 (patch)
tree8c59c535e6f8207431ed79ffcc6ba4c23c2e0483 /xs
parent0c95d4e0d998230258b5f3aa35af3f19da46778a (diff)
Integrated the new layer height spans with configs into the backend.
Fixed some compiler warnings.
Diffstat (limited to 'xs')
-rw-r--r--xs/xsp/Print.xsp2
1 files changed, 0 insertions, 2 deletions
diff --git a/xs/xsp/Print.xsp b/xs/xsp/Print.xsp
index c35f967f8..70313ff5e 100644
--- a/xs/xsp/Print.xsp
+++ b/xs/xsp/Print.xsp
@@ -100,7 +100,6 @@ _constant()
%code%{ RETVAL = const_cast<PrintObjectPtrs*>(&THIS->objects()); %};
Ref<PrintObject> get_object(int idx)
%code%{ RETVAL = THIS->objects()[idx]; %};
- void reload_object(int idx);
size_t object_count()
%code%{ RETVAL = THIS->objects().size(); %};
@@ -141,7 +140,6 @@ _constant()
}
%};
- void add_model_object(ModelObject* model_object, int idx = -1);
bool apply_config_perl_tests_only(DynamicPrintConfig* config)
%code%{ RETVAL = THIS->apply_config_perl_tests_only(*config); %};
bool has_infinite_skirt();