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

Method errorDialog

Gui/GuiAppInstance.cpp:611–629  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

609}
610
611void
612GuiAppInstance::errorDialog(const std::string & title,
613 const std::string & message,
614 bool useHtml) const
615{
616 appPTR->hideSplashScreen();
617 {
618 QMutexLocker l(&_imp->_showingDialogMutex);
619 ++_imp->_showingDialog;
620 }
621 if (!_imp->_gui) {
622 return;
623 }
624 _imp->_gui->errorDialog(title, message, useHtml);
625 {
626 QMutexLocker l(&_imp->_showingDialogMutex);
627 --_imp->_showingDialog;
628 }
629}
630
631void
632GuiAppInstance::errorDialog(const std::string & title,

Callers

nothing calls this directly

Calls 1

hideSplashScreenMethod · 0.45

Tested by

no test coverage detected