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

Method informationDialog

Gui/GuiAppInstance.cpp:693–711  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

691}
692
693void
694GuiAppInstance::informationDialog(const std::string & title,
695 const std::string & message,
696 bool useHtml) const
697{
698 appPTR->hideSplashScreen();
699 {
700 QMutexLocker l(&_imp->_showingDialogMutex);
701 ++_imp->_showingDialog;
702 }
703 if (!_imp->_gui) {
704 return;
705 }
706 _imp->_gui->informationDialog(title, message, useHtml);
707 {
708 QMutexLocker l(&_imp->_showingDialogMutex);
709 --_imp->_showingDialog;
710 }
711}
712
713void
714GuiAppInstance::informationDialog(const std::string & title,

Callers

nothing calls this directly

Calls 1

hideSplashScreenMethod · 0.45

Tested by

no test coverage detected