diff options
Diffstat (limited to 'kdecore')
-rw-r--r-- | kdecore/kapplication.cpp | 16 | ||||
-rw-r--r-- | kdecore/kglobalsettings.cpp | 8 |
2 files changed, 19 insertions, 5 deletions
diff --git a/kdecore/kapplication.cpp b/kdecore/kapplication.cpp index bad196482..07260813c 100644 --- a/kdecore/kapplication.cpp +++ b/kdecore/kapplication.cpp @@ -1510,15 +1510,29 @@ void KApplication::parseCommandLine( ) if (args->isSet("style")) { + TQStringList plugins = KGlobal::dirs()->resourceDirs( "qtplugins" ); + TQStringList::Iterator itp = plugins.begin(); + while (itp != plugins.end()) { + addLibraryPath( *itp ); + ++itp; + } + TQStringList styles = TQStyleFactory::keys(); TQString reqStyle(args->getOption("style").lower()); - for (TQStringList::ConstIterator it = styles.begin(); it != styles.end(); ++it) + TQStringList list = libraryPaths(); + TQStringList::Iterator it = list.begin(); + while( it != list.end() ) { + ++it; + } + + for (TQStringList::ConstIterator it = styles.begin(); it != styles.end(); ++it) { if ((*it).lower() == reqStyle) { d->overrideStyle = *it; break; } + } if (d->overrideStyle.isEmpty()) fprintf(stderr, "%s", TQString(i18n("The style %1 was not found\n").arg(reqStyle)).local8Bit().data()); diff --git a/kdecore/kglobalsettings.cpp b/kdecore/kglobalsettings.cpp index 3595dce4c..f78377cfe 100644 --- a/kdecore/kglobalsettings.cpp +++ b/kdecore/kglobalsettings.cpp @@ -265,7 +265,7 @@ TQColor KGlobalSettings::buttonTextColor() } // IMPORTANT: -// This function should be get in sync with +// This function should be kept in sync with // KApplication::kdisplaySetPalette() TQColor KGlobalSettings::baseColor() { @@ -274,7 +274,7 @@ TQColor KGlobalSettings::baseColor() } // IMPORTANT: -// This function should be get in sync with +// This function should be kept in sync with // KApplication::kdisplaySetPalette() TQColor KGlobalSettings::textColor() { @@ -283,7 +283,7 @@ TQColor KGlobalSettings::textColor() } // IMPORTANT: -// This function should be get in sync with +// This function should be kept in sync with // KApplication::kdisplaySetPalette() TQColor KGlobalSettings::highlightedTextColor() { @@ -292,7 +292,7 @@ TQColor KGlobalSettings::highlightedTextColor() } // IMPORTANT: -// This function should be get in sync with +// This function should be kept in sync with // KApplication::kdisplaySetPalette() TQColor KGlobalSettings::highlightColor() { |