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:
authorVojtech Kral <vojtech@kral.hk>2019-04-09 15:18:03 +0300
committerVojtech Kral <vojtech@kral.hk>2019-04-09 16:16:10 +0300
commitc17e8602ed32c73364c6e29e16434ae81c8bfcd8 (patch)
treea1d87083df5fdda283f93fed07eb6097cd043d7d /src/slic3r/GUI/Preset.hpp
parent64ce604ff47197a6b88e047ef12f561bb9ffdfec (diff)
Factor out load_scaled_bitmap
Diffstat (limited to 'src/slic3r/GUI/Preset.hpp')
-rw-r--r--src/slic3r/GUI/Preset.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slic3r/GUI/Preset.hpp b/src/slic3r/GUI/Preset.hpp
index ac1171e18..22740e31e 100644
--- a/src/slic3r/GUI/Preset.hpp
+++ b/src/slic3r/GUI/Preset.hpp
@@ -276,10 +276,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(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(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; }