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

Method warningDialog

Gui/GuiAppInstance.cpp:652–670  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

650}
651
652void
653GuiAppInstance::warningDialog(const std::string & title,
654 const std::string & message,
655 bool useHtml) const
656{
657 appPTR->hideSplashScreen();
658 {
659 QMutexLocker l(&_imp->_showingDialogMutex);
660 ++_imp->_showingDialog;
661 }
662 if (!_imp->_gui) {
663 return;
664 }
665 _imp->_gui->warningDialog(title, message, useHtml);
666 {
667 QMutexLocker l(&_imp->_showingDialogMutex);
668 --_imp->_showingDialog;
669 }
670}
671
672void
673GuiAppInstance::warningDialog(const std::string & title,

Callers

nothing calls this directly

Calls 1

hideSplashScreenMethod · 0.45

Tested by

no test coverage detected