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

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

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

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

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