From 56721aac86c9ae5253abac8962474c8d1a7e648a Mon Sep 17 00:00:00 2001 From: zautrix Date: Wed, 07 Jul 2004 11:56:39 +0000 Subject: Changes for compiling on desktop --- (limited to 'microkde') diff --git a/microkde/kdecore/klibloader.cpp b/microkde/kdecore/klibloader.cpp index c07d50f..c091e05 100644 --- a/microkde/kdecore/klibloader.cpp +++ b/microkde/kdecore/klibloader.cpp @@ -40,14 +40,11 @@ #ifndef DESKTOP_VERSION #include #include +#else +#include #endif -/*US -#ifdef Q_WS_X11 -#include -#include -#endif -*/ + template class QAsciiDict; #include //getenv @@ -192,7 +189,6 @@ void* KLibrary::symbol( const char* symname ) const if ( !sym ) { //US kdWarning(150) << "KLibrary: " << lt_dlerror() << endl; - kdWarning(150) << "KLibrary: " << m_libname << ", symbol:" << symname << " not found " << endl; return 0; } @@ -477,8 +473,11 @@ KLibrary* KLibLoader::library( const char *name ) QString libfile = findLibrary( name ); if ( libfile.isEmpty() ) return 0; - +#ifdef DESKTOP_VERSION + QLibrary *qlib = new QLibrary( libfile.latin1() ); +#else QLibrary *qlib = new QLibrary( libfile.latin1(), QLibrary::Immediately ); +#endif //US lt_dlhandle handle = lt_dlopen( libfile.latin1() ); //US if ( !handle ) @@ -599,6 +598,7 @@ void KLibLoader::close_pending(KLibWrapPrivate *wrap) // kdDebug(150) << "try to dlclose " << wrap->name << ": yes, done." << endl; +#if 0 #ifndef Q_WS_QWS if ( !deleted_one ) { /* Only do the hack once in this loop. @@ -628,6 +628,7 @@ void KLibLoader::close_pending(KLibWrapPrivate *wrap) // FIXME(E): Implement in Qt Embedded #endif +#endif // 0 deleted_one = true; //US lt_dlclose(wrap->handle); wrap->handle->unload(); diff --git a/microkde/kdecore/kstandarddirs.cpp b/microkde/kdecore/kstandarddirs.cpp index 1a1e027..7f51d78 100644 --- a/microkde/kdecore/kstandarddirs.cpp +++ b/microkde/kdecore/kstandarddirs.cpp @@ -43,7 +43,6 @@ #include #include #include -#include #include "kstandarddirs.h" #include "kconfig.h" @@ -1225,7 +1224,7 @@ void KStandardDirs::addKDEDefaults() } //US kdedirList.append(KDEDIR); //US for embedded, add qtopia dir as kdedir - kdedirList.append(QPEApplication::qpeDir()); + kdedirList.append(readEnvPath("QPEDIR" )); #ifdef __KDE_EXECPREFIX QString execPrefix(__KDE_EXECPREFIX); diff --git a/microkde/kdeui/ktoolbar.cpp b/microkde/kdeui/ktoolbar.cpp index 92cb8d2..79b0f9d 100644 --- a/microkde/kdeui/ktoolbar.cpp +++ b/microkde/kdeui/ktoolbar.cpp @@ -1024,7 +1024,7 @@ int KToolBar::iconSize() const return d->m_iconSize; */ int ret = 18; - if ( QApplication::desktop()->width() > 320 && QApplication::desktop()->width() < 650 ) + if ( QApplication::desktop()->width() > 320 ) ret = 30; return ret; } diff --git a/microkde/kresources/factory.cpp b/microkde/kresources/factory.cpp index 827ec38..2253de4 100644 --- a/microkde/kresources/factory.cpp +++ b/microkde/kresources/factory.cpp @@ -26,8 +26,9 @@ #include #include #include +//#ifndef DESKTOP_VERSION #include - +//#endif #include #include "resource.h" diff --git a/microkde/microkde.pro b/microkde/microkde.pro index 1e9b022..05833a9 100644 --- a/microkde/microkde.pro +++ b/microkde/microkde.pro @@ -98,7 +98,8 @@ KDGanttMinimizeSplitter.h \ kdeui/ktoolbarhandler.h \ kdeui/kaction.h \ kdeui/kactionclasses.h \ - kdeui/kactioncollection.h + kdeui/kactioncollection.h \ + kdecore/klibloader.h # kdecore/klibloader.h \ @@ -163,8 +164,5 @@ KDGanttMinimizeSplitter.cpp \ kdeui/ktoolbarbutton.cpp \ kdeui/ktoolbarhandler.cpp \ kdeui/kstdaction.cpp \ - kdeui/kxmlguiclient.cpp - - - -# kdecore/klibloader.cpp \ \ No newline at end of file + kdeui/kxmlguiclient.cpp \ + kdecore/klibloader.cpp \ No newline at end of file -- cgit v0.9.0.2