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:
authorbubnikv <bubnikv@gmail.com>2019-12-18 12:17:47 +0300
committerbubnikv <bubnikv@gmail.com>2019-12-18 12:17:47 +0300
commit8795f7dba86d0a7c08946be0d61513673c3d297e (patch)
tree4e1e568d6c20c76627bebc8fbad5bed0d6359508 /src/slic3r/GUI/wxExtensions.hpp
parente2f91cacab9556c04ef61bb21cdd759635484f43 (diff)
Trying to fix a compilation issue on Linux / OSX
Diffstat (limited to 'src/slic3r/GUI/wxExtensions.hpp')
-rw-r--r--src/slic3r/GUI/wxExtensions.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/wxExtensions.hpp b/src/slic3r/GUI/wxExtensions.hpp
index 9b7de93cd..0c43be3a0 100644
--- a/src/slic3r/GUI/wxExtensions.hpp
+++ b/src/slic3r/GUI/wxExtensions.hpp
@@ -962,7 +962,7 @@ private:
bool operator<(const TICK_CODE& other) const { return other.tick > this->tick; }
bool operator>(const TICK_CODE& other) const { return other.tick < this->tick; }
- int tick;
+ int tick = 0;
std::string gcode = Slic3r::ColorChangeCode;
int extruder = 0;
std::string color;