fixup! Caught an unhandled exception from libsndfile

This commit is contained in:
apoorv569 2021-12-14 00:36:56 +05:30
parent 1e6a0e635b
commit 016fd28d34
1 changed files with 7 additions and 0 deletions

View File

@ -183,6 +183,9 @@ class MainFrame : public wxFrame
// ------------------------------------------------------------------- // -------------------------------------------------------------------
wxLongLong m_LoopA, m_LoopB; wxLongLong m_LoopA, m_LoopB;
// -------------------------------------------------------------------
wxSystemAppearance m_Theme = wxSystemSettings::GetAppearance();
private: private:
// ------------------------------------------------------------------- // -------------------------------------------------------------------
bool bAutoplay = false; bool bAutoplay = false;
@ -259,6 +262,10 @@ class MainFrame : public wxFrame
// Frame resize event handler // Frame resize event handler
void OnResizeFrame(wxSizeEvent& event); void OnResizeFrame(wxSizeEvent& event);
// Splitter window sash pos event handler
void OnTopSplitterSashPosChanged(wxSplitterEvent& event);
void OnBottomSplitterSashPosChanged(wxSplitterEvent& event);
// ------------------------------------------------------------------- // -------------------------------------------------------------------
// Timer update event handler // Timer update event handler
void UpdateElapsedTime(wxTimerEvent& event); void UpdateElapsedTime(wxTimerEvent& event);