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-03-04 14:59:20 +0300
committerbubnikv <bubnikv@gmail.com>2019-03-04 14:59:20 +0300
commit58e4ace6993b70b602a33d9ddeabd4df938c8286 (patch)
tree23fef8848304cdac96d1b8babf85a590f1a1e672 /src/slic3r/GUI/ImGuiWrapper.hpp
parente7fdc44d5ad7282388f1990c3c9491bad266368d (diff)
Fixed a typo
Diffstat (limited to 'src/slic3r/GUI/ImGuiWrapper.hpp')
-rw-r--r--src/slic3r/GUI/ImGuiWrapper.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/ImGuiWrapper.hpp b/src/slic3r/GUI/ImGuiWrapper.hpp
index 8698b480d..333b66ed4 100644
--- a/src/slic3r/GUI/ImGuiWrapper.hpp
+++ b/src/slic3r/GUI/ImGuiWrapper.hpp
@@ -57,7 +57,7 @@ public:
bool input_double(const std::string &label, const double &value, const std::string &format = "%.3f");
bool input_vec3(const std::string &label, const Vec3d &value, float width, const std::string &format = "%.3f");
bool checkbox(const wxString &label, bool &value);
- void text(const const char *label);
+ void text(const char *label);
void text(const std::string &label);
void text(const wxString &label);
bool combo(const wxString& label, const std::vector<std::string>& options, std::string& current_selection);