Esempio n. 1
0
    Player::~Player()
    {
      deallocating();

      // we're shutting down so unregister me.
      if (languageHook)
        languageHook->unregisterPlayerCallback(this);
    }
Esempio n. 2
0
    Player::~Player()
    {
      deallocating();

      // we're shutting down so unregister me.
      if (languageHook)
      {
        DelayedCallGuard dc(languageHook);
        languageHook->UnregisterPlayerCallback(this);
      }
    }
Esempio n. 3
0
 Monitor::~Monitor()
 { 
   deallocating();
   DelayedCallGuard dg(languageHook);
   // we're shutting down so unregister me.
   if (languageHook)
   {
     DelayedCallGuard dc;
     languageHook->UnregisterMonitorCallback(this);
   }
 }
Esempio n. 4
0
 // ============================================================
 // ============================================================
 Control::~Control() { deallocating(); }
Esempio n. 5
0
DialogProgressBG::~DialogProgressBG() {
    TRACE;
    deallocating();
}
Esempio n. 6
0
DialogProgress::~DialogProgress() {
    TRACE;
    deallocating();
}
Esempio n. 7
0
 WindowDialog::~WindowDialog() { deallocating(); }
Esempio n. 8
0
File: Window.cpp Progetto: A600/xbmc
    Window::~Window()
    {
      TRACE;

      deallocating();
    }
Esempio n. 9
0
    Window::~Window()
    {
      XBMC_TRACE;

      deallocating();
    }
Esempio n. 10
0
 Callback::~Callback() { deallocating(); }