mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Fixed the context initialization check for the log plugin
This commit is contained in:
parent
2748e34f27
commit
4b38fc730b
1 changed files with 7 additions and 3 deletions
|
@ -90,11 +90,15 @@ void CLogPlugin::extensionsInitialized()
|
|||
|
||||
void CLogPlugin::setNelContext(NLMISC::INelContext *nelContext)
|
||||
{
|
||||
nlassert(!NLMISC::INelContext::isContextInitialised());
|
||||
_LibContext = new NLMISC::CLibraryContext(*nelContext);
|
||||
#ifdef NL_OS_WINDOWS
|
||||
// Ensure that a context doesn't exist yet.
|
||||
// This only applies to platforms without PIC, e.g. Windows.
|
||||
nlassert(!NLMISC::INelContext::isContextInitialised());
|
||||
#endif // fdef NL_OS_WINDOWS^M
|
||||
_LibContext = new NLMISC::CLibraryContext(*nelContext);
|
||||
|
||||
_displayer = new NLQT::CQtDisplayer(_ui.plainTextEdit);
|
||||
|
||||
|
||||
}
|
||||
|
||||
QString CLogPlugin::name() const
|
||||
|
|
Loading…
Reference in a new issue