1
0

WhatsNewBrowserInitThread.cpp 338 B

1234567891011121314151617181920
  1. #include "WhatsNewBrowserInitThread.hpp"
  2. #ifdef BROWSER_AVAILABLE
  3. #include <browser-panel.hpp>
  4. #endif
  5. #include "moc_WhatsNewBrowserInitThread.cpp"
  6. #ifdef BROWSER_AVAILABLE
  7. struct QCef;
  8. extern QCef *cef;
  9. #endif
  10. void WhatsNewBrowserInitThread::run()
  11. {
  12. #ifdef BROWSER_AVAILABLE
  13. cef->wait_for_browser_init();
  14. #endif
  15. emit Result(url);
  16. }