aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-06-06Fix kreadconfig to only print help when it matters.Matthew Dawson
kreadconfig only needs to print help when a key is not given or when extra text is on the end of the command line. BUG: 335806
2014-05-26Update usage of QVariant::type() for Qt5.Thomas Braxton
This should have been part of 8b88eaee. REVIEW: 118339
2014-05-26Update usage of QVariant::type() for Qt5.Thomas Braxton
According to http://qt-project.org/doc/qt-5/qvariant.html#type the return value of QVariant::type() should be interpreted as a QMetaType::Type. This also silences the compile-time warnings about 38 not being a member of QVariant::Type. REVIEW: 118332
2014-05-26REVIEW: 118039Thomas Braxton
Simplify KConfigGroup::readEntry/writeEntry. KConfigGroup::readCheck/writeCheck caused some compilers to complain since they were private functions that were being reimplemented outside the class definition. Updated KCONFIGGROUP_DECLARE_ENUM_QOBJECT/ deprecated global functions created in KDE4 times.
2014-05-23Fix searching of paths in kconf_updateDavid Edmundson
Previous code said if we found an executable in kconf_update_bin try to find a different executable in the normal path Reviewed-by: Rohan Garg
2014-05-12Fix lupdate warningsAlbert Astals Cid
/home/scripty/prod/git-unstable/frameworks_kconfig/src/core/bufferfragment_p.h:37: Ignoring definition of undeclared qualified class /home/scripty/prod/git-unstable/frameworks_kconfig/src/core/bufferfragment_p.h:37: Ignoring definition of undeclared qualified class
2014-05-12remove unused member of the private classMarco Martin
2014-05-07Fix kconf_update test on WindowsAlex Richardson
We get a CMake warning for reading the LOCATION property, but I don't see how else to do it (generator expressions don't seem to work)
2014-05-07Use QProcess in kconf_updateAlex Richardson
This allows removing some custom WIN32 API code and is also nicer than directly calling system()
2014-05-05Revert "Store app config file in ~/.config/<domain>/<app>rc"David Faure
This reverts commit 625e124898afad04ab5c3939b1b129b6014046cd. Let's take the time to think about a better solution, possibly.
2014-05-04Store app config file in ~/.config/<domain>/<app>rcDavid Faure
Only KSharedConfig::openConfig() and KConfig default constructor are affected. KConfig("kdeglobals"), for instance, points to ~/.config so that it can be shared. REVIEW: 117989
2014-05-03Fix lupdate warningAlbert Astals Cid
kconfigini.cpp:554: Class 'KConfigIniBackend' lacks Q_OBJECT macro
2014-05-03SVN_SILENT made messages (.desktop file)l10n daemon script
2014-05-02fix include path in .pri filesDavid Faure
2014-05-02Add/fix message extraction for repo frameworks/kconfigBurkhard Lück
REVIEW:117842
2014-05-02SVN_SILENT made messages (.desktop file)l10n daemon script
2014-04-29SVN_SILENT made messages (.desktop file)l10n daemon script
2014-04-29SVN_SILENT made messages (.desktop file)l10n daemon script
2014-04-28SVN_SILENT made messages (.desktop file)l10n daemon script
2014-04-28SVN_SILENT made messages (.desktop file)l10n daemon script
2014-04-28SVN_SILENT made messages (.desktop file)l10n daemon script
2014-04-28SVN_SILENT made messages (.desktop file)l10n daemon script
2014-04-27SVN_SILENT made messages (.desktop file)l10n daemon script
2014-04-27install libexec executables in the kf5 libexec directoryAleix Pol
2014-04-26Adapt to changes in KDEInstallDirsAleix Pol
kde5/services is kservices5 kde5/servicetypes is kservicestypes5
2014-04-27Rename kreadconfig and kwriteconfig for coinstallability with kde-runtime4.Michael Palimaka
REVIEW: 117792
2014-04-26Adopt kreadconfig and kwriteconfig to kconfigAleix Pol
Drop KCoreAddons and KI18n dependency. Add a bunch of QStringLiteral()
2014-04-26Clean up preprocessor definitions and includes from the root CMakeLists.txtAleix Pol
Required stopping to use some kde4support headers that were magically injected.
2014-04-26Stop using kde4_add_executableAleix Pol
It's deprecated now
2014-04-26fix indentation, to some extentAleix Pol
2014-04-26Port kreadconfig to KF5Aleix Pol
2014-04-26Port kwriteconfig to KF5Aleix Pol
2014-04-26Port kstandarddirs usage with convert-kstandarddirs.plDavid Faure
2014-04-26Forwardport of commit 1121161Nicolas Lécureuil
svn path=/trunk/KDE/kdebase/runtime/; revision=1121163
2014-04-26krazy fixesJohn Layt
svn path=/trunk/KDE/kdebase/runtime/; revision=1067076
2014-04-26support nested groups.Oswald Buddenhagen
svn path=/trunk/KDE/kdebase/runtime/; revision=822957
2014-04-26Use INSTALL_TARGETS_DEFAULT_ARGSLaurent Montel
svn path=/trunk/KDE/kdebase/runtime/; revision=813305
2014-04-26KConfig* API overhaul. only cosmetics, so don't panic.Oswald Buddenhagen
KConfigBase: - remove separator argument from list entry reading/writing functions - introduce {read,write}XdgListEntry() - kill readPathListEntry(), add readPathEntry() overload instead. the default value is not optional any more, as it defines the return type. this is consistent with the readEntry() functions. - rename clean() => markAsClean(), remove rollback() - rename ConfigState => AccessMode, getConfigState() => accessMode() - rename {entry,group}IsImmutable() => is{Entry,Group}Immutable() - remove NLS alias to Localized KConfig: - remove setGroup() & group() - reshuffle OpenFlag enum, introduce NoCascade for symmetry - remove setExtraConfigFiles() alias to addConfigSources() KConfigGroup: - inherit KConfigBase::deleteGroup() overloads - make convertToQVariant() private, it will probably change somehow - KConfig & KConfigGroup: deprecate entryMap() - remove bogus declarations: KConfigGroup::setReadDefaults(), KConfig::readEntryUntranslated() - apidox - reshuffle the declarations in the headers svn path=/trunk/KDE/kdebase/runtime/; revision=728852
2014-04-26Merge the KConfig branch. This are the 3 main modules (+kdeadmin), which are ↵Andreas Pakulat
needed now because friday is the last BC day. The rest of the modules will follow as fast as my laptop allows. svn path=/trunk/KDE/kdebase/runtime/; revision=721704
2014-04-26remove kde4_automoc()Allen Winter
svn path=/trunk/KDE/kdebase/runtime/; revision=685984
2014-04-26remove redundant project declarationsDirk Mueller
svn path=/trunk/KDE/kdebase/runtime/; revision=683437
2014-04-26Interface modifications to KCmdLineArgs, KAboutData and KComponentData; BIC, ↵Chusslove Illich
SIC. Most of the depending code has been auto-converted to new API. svn path=/trunk/KDE/kdebase/runtime/; revision=682259
2014-04-26Fix generate po fileLaurent Montel
svn path=/trunk/KDE/kdebase/runtime/; revision=682056
2014-04-26Remove not necessary includeLaurent Montel
svn path=/trunk/KDE/kdebase/runtime/; revision=656776
2014-04-26setGroup -> KConfigGroupDavid Faure
svn path=/trunk/KDE/kdebase/runtime/; revision=635573
2014-04-26merged kconfiggroup_port branchStephan Kulow
svn path=/trunk/KDE/kdebase/runtime/; revision=635490
2014-04-26merge the kinstance-redesign branch back to trunk.Matthias Kretz
svn path=/trunk/KDE/kdebase/khelpcenter/; revision=628276
2014-04-26FixLaurent Montel
svn path=/trunk/KDE/kdebase/runtime/; revision=603871
2014-04-26Not GUI applicationLaurent Montel
svn path=/trunk/KDE/kdebase/runtime/; revision=603865
2014-04-26Apply Alex patch (now we can use enable-final argument some module compiles ↵Laurent Montel
with enable-final now) As discussed with Alex it's not necessary to have program name into automoc macro svn path=/trunk/KDE/kdebase/workspace/kcontrol/locale/; revision=598290