mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 11:23:42 +00:00
Fix error for Clang 20
This commit is contained in:
@@ -67,10 +67,10 @@ private:
|
|||||||
static bool get_stream_url(std::string *url = nullptr);
|
static bool get_stream_url(std::string *url = nullptr);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static constexpr wxMediaState MEDIASTATE_IDLE = (wxMediaState) 3;
|
static const wxMediaState MEDIASTATE_IDLE = (wxMediaState) 3;
|
||||||
static constexpr wxMediaState MEDIASTATE_INITIALIZING = (wxMediaState) 4;
|
static const wxMediaState MEDIASTATE_INITIALIZING = (wxMediaState) 4;
|
||||||
static constexpr wxMediaState MEDIASTATE_LOADING = (wxMediaState) 5;
|
static const wxMediaState MEDIASTATE_LOADING = (wxMediaState) 5;
|
||||||
static constexpr wxMediaState MEDIASTATE_BUFFERING = (wxMediaState) 6;
|
static const wxMediaState MEDIASTATE_BUFFERING = (wxMediaState) 6;
|
||||||
|
|
||||||
wxMediaCtrl2 * m_media_ctrl;
|
wxMediaCtrl2 * m_media_ctrl;
|
||||||
wxMediaState m_last_state = MEDIASTATE_IDLE;
|
wxMediaState m_last_state = MEDIASTATE_IDLE;
|
||||||
|
|||||||
Reference in New Issue
Block a user