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>2018-10-31 18:22:36 +0300
committerbubnikv <bubnikv@gmail.com>2018-10-31 18:22:36 +0300
commitfd1c5dd2181a03641ae99218b4178fecba2ca95e (patch)
tree24b72b5c8d2e4fa070625dc25896d848876b9857 /src/slic3r/GUI/GUI.cpp
parent66e97aa4eb6ce2efbaccccfbe8d561e93874fe55 (diff)
WIP: SL1 profiles, SL1 in wizard, switching between FFF / SLA
Diffstat (limited to 'src/slic3r/GUI/GUI.cpp')
-rw-r--r--src/slic3r/GUI/GUI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slic3r/GUI/GUI.cpp b/src/slic3r/GUI/GUI.cpp
index 9e18cac02..1a21f8a9f 100644
--- a/src/slic3r/GUI/GUI.cpp
+++ b/src/slic3r/GUI/GUI.cpp
@@ -68,7 +68,7 @@ void enable_screensaver()
bool debugged()
{
#ifdef _WIN32
- return IsDebuggerPresent();
+ return IsDebuggerPresent() == TRUE;
#else
return false;
#endif /* _WIN32 */
@@ -233,7 +233,7 @@ void change_opt_value(DynamicPrintConfig& config, const t_config_option_key& opt
break;
}
}
- catch (const std::exception &e)
+ catch (const std::exception & /* e */)
{
int i = 0;//no reason, just experiment
}