mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 00:50:29 -04:00
PR: 272730 Reported by: michal.zielonka.8001@gmail.com Approved by: teodorsigaev@gmail.com (maintainer)
20 lines
660 B
C++
20 lines
660 B
C++
--- src/slic3r/GUI/UnsavedChangesDialog.hpp.orig 2023-07-25 12:56:44 UTC
|
|
+++ src/slic3r/GUI/UnsavedChangesDialog.hpp
|
|
@@ -48,7 +48,7 @@ class ModelNode
|
|
wxString m_mod_color;
|
|
wxString m_new_color;
|
|
|
|
-#ifdef __linux__
|
|
+#if defined(__linux__) || defined(__FreeBSD__)
|
|
wxIcon get_bitmap(const wxString& color);
|
|
#else
|
|
wxBitmap get_bitmap(const wxString& color);
|
|
@@ -57,7 +57,7 @@ class ModelNode
|
|
public:
|
|
|
|
bool m_toggle {true};
|
|
-#ifdef __linux__
|
|
+#if defined(__linux__) || defined(__FreeBSD__)
|
|
wxIcon m_icon;
|
|
wxIcon m_old_color_bmp;
|
|
wxIcon m_mod_color_bmp;
|