Skip to content

Commit

Permalink
movieplayer.cpp: initalize static members (thx GetAway1)
Browse files Browse the repository at this point in the history
  • Loading branch information
BPanther committed Aug 12, 2023
1 parent a39f9e5 commit ade9812
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/gui/movieplayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ OpenThreads::Mutex CMoviePlayerGui::mutex;
OpenThreads::Mutex CMoviePlayerGui::bgmutex;
OpenThreads::Condition CMoviePlayerGui::cond;
pthread_t CMoviePlayerGui::bgThread;
cPlayback *CMoviePlayerGui::playback;
bool CMoviePlayerGui::webtv_started;
CMovieBrowser* CMoviePlayerGui::moviebrowser;
CBookmarkManager * CMoviePlayerGui::bookmarkmanager;
cPlayback *CMoviePlayerGui::playback = NULL;
bool CMoviePlayerGui::webtv_started = false;
CMovieBrowser* CMoviePlayerGui::moviebrowser = NULL;
CBookmarkManager * CMoviePlayerGui::bookmarkmanager = NULL;

CMoviePlayerGui& CMoviePlayerGui::getInstance(bool background)
{
Expand Down

0 comments on commit ade9812

Please sign in to comment.