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:
authorYuSanka <yusanka@gmail.com>2018-11-19 15:17:14 +0300
committerYuSanka <yusanka@gmail.com>2018-11-19 16:05:29 +0300
commit398f15d54684540220dedc202f9ae87d33ac9413 (patch)
treec50a1b00c30785c5305e4a38df3a9a9aab6d8072 /src/slic3r/GUI/MainFrame.hpp
parent703f367e6961c16cfcd9c0a156eb541ee4548f85 (diff)
Some code rebase
Diffstat (limited to 'src/slic3r/GUI/MainFrame.hpp')
-rw-r--r--src/slic3r/GUI/MainFrame.hpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/slic3r/GUI/MainFrame.hpp b/src/slic3r/GUI/MainFrame.hpp
index b324586c4..8cac3e8e2 100644
--- a/src/slic3r/GUI/MainFrame.hpp
+++ b/src/slic3r/GUI/MainFrame.hpp
@@ -53,8 +53,6 @@ class MainFrame : public wxFrame
wxString m_qs_last_output_file = wxEmptyString;
wxString m_last_config = wxEmptyString;
- std::map<std::string, Tab*> m_options_tabs;
-
wxMenuItem* m_menu_item_repeat { nullptr };
wxMenuItem* m_menu_item_reslice_now { nullptr };
#if !ENABLE_NEW_MENU_LAYOUT
@@ -67,7 +65,6 @@ class MainFrame : public wxFrame
void on_presets_changed(SimpleEvent&);
void on_value_changed(wxCommandEvent&);
- Tab* get_tab(const std::string& name);
#if ENABLE_NEW_MENU_LAYOUT
bool can_save() const;
@@ -84,8 +81,6 @@ public:
Plater* plater() { return m_plater; }
void init_tabpanel();
- const std::map<std::string, Tab*>& options_tabs() const { return m_options_tabs; }
- Tab* get_preset_tab(const std::string& name);
void create_preset_tabs();
void add_created_tab(Tab* panel);
void init_menubar();
@@ -105,8 +100,6 @@ public:
void select_tab(size_t tab) const;
void select_view(const std::string& direction);
- std::vector<PresetTab>& get_preset_tabs();
-
Plater* m_plater { nullptr };
wxNotebook* m_tabpanel { nullptr };
wxProgressDialog* m_progress_dialog { nullptr };