MCPcopy Create free account
hub / github.com/NatronGitHub/Natron / warningDialog

Method warningDialog

Engine/AppManager.cpp:3465–3477  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3463}
3464
3465void
3466Dialogs::warningDialog(const std::string & title,
3467 const std::string & message,
3468 bool useHtml)
3469{
3470 appPTR->hideSplashScreen();
3471 AppInstancePtr topLvlInstance = appPTR->getTopLevelInstance();
3472 if ( topLvlInstance && !appPTR->isBackground() ) {
3473 topLvlInstance->warningDialog(title, message, useHtml);
3474 } else {
3475 std::cerr << "WARNING: " << title << ": " << message << std::endl;
3476 }
3477}
3478
3479void
3480Dialogs::warningDialog(const std::string & title,

Callers

nothing calls this directly

Calls 3

getTopLevelInstanceMethod · 0.80
hideSplashScreenMethod · 0.45
isBackgroundMethod · 0.45

Tested by

no test coverage detected