author | wimpie <wimpie> | 2004-04-07 01:06:27 (UTC) |
---|---|---|
committer | wimpie <wimpie> | 2004-04-07 01:06:27 (UTC) |
commit | 453109d9dafc25fdaf82197ef8a3f4e34c9272af (patch) (side-by-side diff) | |
tree | bc8fe8e54f52425e6b478be69b979f0a8ab910f5 /library | |
parent | 88b862c2356a7e75136282524b6856f1fcd10066 (diff) | |
download | opie-453109d9dafc25fdaf82197ef8a3f4e34c9272af.zip opie-453109d9dafc25fdaf82197ef8a3f4e34c9272af.tar.gz opie-453109d9dafc25fdaf82197ef8a3f4e34c9272af.tar.bz2 |
Added some odebug includes and namespaces refs
opiepim links with opiedb2 -> needs depend in config.in
qlibrary_unix -> print dlopen errors ALWAYS not only indebug
BTmanager.pro needs opieui2
-rw-r--r-- | library/qlibrary_unix.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/qlibrary_unix.cpp b/library/qlibrary_unix.cpp index ff69286..2181153 100644 --- a/library/qlibrary_unix.cpp +++ b/library/qlibrary_unix.cpp @@ -199,10 +199,10 @@ bool QLibraryPrivate::loadLibrary() QString filename = library->library(); pHnd = dlopen( filename.latin1() , RTLD_LAZY ); -#if defined(QT_DEBUG) || defined(QT_DEBUG_COMPONENT) +// #if defined(QT_DEBUG) || defined(QT_DEBUG_COMPONENT) if ( !pHnd ) qWarning( "%s", dlerror() ); -#endif +// #endif return pHnd != 0; } |