From 93774087f1510a8f3e838bd802bed6cd891fdffc Mon Sep 17 00:00:00 2001 From: bubnikv Date: Mon, 4 Sep 2017 13:55:56 +0200 Subject: [PATCH] Fixed typo from the previous commit. --- xs/src/libslic3r/GCode.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/libslic3r/GCode.hpp b/xs/src/libslic3r/GCode.hpp index 574ebcee2e..e68cf49c78 100644 --- a/xs/src/libslic3r/GCode.hpp +++ b/xs/src/libslic3r/GCode.hpp @@ -90,7 +90,7 @@ public: m_brim_done(false) {} std::string prime(GCode &gcodegen); - static std::string WipeTowerIntegration::prime_single_color_print(const Print & /* print */, unsigned int initial_tool, GCode & /* gcodegen */); + static std::string prime_single_color_print(const Print & /* print */, unsigned int initial_tool, GCode & /* gcodegen */); void next_layer() { ++ m_layer_idx; m_tool_change_idx = 0; } std::string tool_change(GCode &gcodegen, int extruder_id, bool finish_layer); std::string finalize(GCode &gcodegen);