Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/slic3r/GUI/ProgressStatusBar.hpp')
-rw-r--r--src/slic3r/GUI/ProgressStatusBar.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/slic3r/GUI/ProgressStatusBar.hpp b/src/slic3r/GUI/ProgressStatusBar.hpp
index 7c2171a5e..57ec9ae2b 100644
--- a/src/slic3r/GUI/ProgressStatusBar.hpp
+++ b/src/slic3r/GUI/ProgressStatusBar.hpp
@@ -24,9 +24,9 @@ namespace Slic3r {
*/
class ProgressStatusBar {
wxStatusBar *self; // we cheat! It should be the base class but: perl!
- wxTimer *timer_;
- wxGauge *prog_;
- wxButton *cancelbutton_;
+ wxTimer *m_timer;
+ wxGauge *m_prog;
+ wxButton *m_cancelbutton;
public:
/// Cancel callback function type
@@ -42,7 +42,7 @@ public:
void show_progress(bool);
void start_busy(int = 100);
void stop_busy();
- inline bool is_busy() const { return busy_; }
+ inline bool is_busy() const { return m_busy; }
void set_cancel_callback(CancelFn = CancelFn());
inline void remove_cancel_callback() { set_cancel_callback(); }
void run(int rate);
@@ -55,8 +55,8 @@ public:
PerlCallback m_perl_cancel_callback;
private:
- bool busy_ = false;
- CancelFn cancel_cb_;
+ bool m_busy = false;
+ CancelFn m_cancel_cb;
};
namespace GUI {