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
diff options
context:
space:
mode:
authorVojtech Kral <vojtech@kral.hk>2018-08-21 12:10:32 +0300
committerVojtech Kral <vojtech@kral.hk>2018-08-21 16:47:29 +0300
commit0c984c75841f2f691af5a73c070ba9d2378bb634 (patch)
tree7a5953d279c6ed4f2d610d006755587be1bbd0b1 /xs/src/slic3r/Utils/OctoPrint.cpp
parentee9f7eaef69cbb84e3f5b54e6b624e317d16f7a3 (diff)
Print host bugfixes / refactoring
Diffstat (limited to 'xs/src/slic3r/Utils/OctoPrint.cpp')
-rw-r--r--xs/src/slic3r/Utils/OctoPrint.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/xs/src/slic3r/Utils/OctoPrint.cpp b/xs/src/slic3r/Utils/OctoPrint.cpp
index c62f9b55c..db86d7697 100644
--- a/xs/src/slic3r/Utils/OctoPrint.cpp
+++ b/xs/src/slic3r/Utils/OctoPrint.cpp
@@ -19,6 +19,8 @@ OctoPrint::OctoPrint(DynamicPrintConfig *config) :
cafile(config->opt_string("printhost_cafile"))
{}
+OctoPrint::~OctoPrint() {}
+
bool OctoPrint::test(wxString &msg) const
{
// Since the request is performed synchronously here,
@@ -125,7 +127,7 @@ bool OctoPrint::send_gcode(const std::string &filename) const
return res;
}
-bool OctoPrint::have_auto_discovery() const
+bool OctoPrint::has_auto_discovery() const
{
return true;
}