From: srn Date: Thu, 2 Mar 2006 11:07:20 +0000 (+0000) Subject: Removed unnecessary dlopen flag X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=25dab5829f28db3c62312f70ca7db26d080b6d60;p=modules%2Fgui.git Removed unnecessary dlopen flag --- diff --git a/src/SUIT/SUIT_Session.cxx b/src/SUIT/SUIT_Session.cxx index e784dfffe..7eca7329a 100755 --- a/src/SUIT/SUIT_Session.cxx +++ b/src/SUIT/SUIT_Session.cxx @@ -290,7 +290,7 @@ SUIT_Session::AppLib SUIT_Session::loadLibrary( const QString& name, QString& li #ifdef WIN32 lib = ::LoadLibrary( (char*)libFile.latin1() ); #else - lib = dlopen( (char*)libFile.latin1(), RTLD_LAZY | RTLD_GLOBAL ); + lib = dlopen( (char*)libFile.latin1(), RTLD_LAZY /*| RTLD_GLOBAL */ ); #endif return lib; }