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>2019-04-10 11:01:20 +0300
committerYuSanka <yusanka@gmail.com>2019-04-10 11:01:20 +0300
commita74c608c7a8eda5c2b5593db7236a6f89374e7f5 (patch)
tree366ea507ae80e1e120638a84ff9f1b6b56eee843 /src/slic3r/GUI/Preset.hpp
parent82573390c7c1b918ad4d2d7f9837984aca20316b (diff)
parent4866642c5c9cfd3288e9194d6133a180f7a35412 (diff)
Merge remote-tracking branch 'origin/master' into ys_msw_dpi
Diffstat (limited to 'src/slic3r/GUI/Preset.hpp')
-rw-r--r--src/slic3r/GUI/Preset.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/slic3r/GUI/Preset.hpp b/src/slic3r/GUI/Preset.hpp
index 989d0c392..6174af623 100644
--- a/src/slic3r/GUI/Preset.hpp
+++ b/src/slic3r/GUI/Preset.hpp
@@ -15,6 +15,7 @@ class wxBitmapComboBox;
class wxChoice;
class wxItemContainer;
class wxString;
+class wxWindow;
namespace Slic3r {
@@ -276,10 +277,10 @@ public:
bool delete_current_preset();
// Load default bitmap to be placed at the wxBitmapComboBox of a MainFrame.
- bool load_bitmap_default(const std::string &file_name);
+ void load_bitmap_default(wxWindow *window, const std::string &file_name);
// Load "add new printer" bitmap to be placed at the wxBitmapComboBox of a MainFrame.
- bool load_bitmap_add(const std::string &file_name);
+ void load_bitmap_add(wxWindow *window, const std::string &file_name);
// Compatible & incompatible marks, to be placed at the wxBitmapComboBox items.
void set_bitmap_compatible (const wxBitmap *bmp) { m_bitmap_compatible = bmp; }