mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-01-01 10:58:23 -05:00
21 lines
338 B
C++
21 lines
338 B
C++
#include "WhatsNewBrowserInitThread.hpp"
|
|
|
|
#ifdef BROWSER_AVAILABLE
|
|
#include <browser-panel.hpp>
|
|
#endif
|
|
|
|
#include "moc_WhatsNewBrowserInitThread.cpp"
|
|
|
|
#ifdef BROWSER_AVAILABLE
|
|
struct QCef;
|
|
extern QCef *cef;
|
|
#endif
|
|
|
|
void WhatsNewBrowserInitThread::run()
|
|
{
|
|
#ifdef BROWSER_AVAILABLE
|
|
cef->wait_for_browser_init();
|
|
#endif
|
|
emit Result(url);
|
|
}
|