diff options
author | Ahmad Samir <a.samirh78@gmail.com> | 2020-06-17 13:45:54 +0200 |
---|---|---|
committer | Ahmad Samir <a.samirh78@gmail.com> | 2021-11-26 19:42:47 +0200 |
commit | 2cd5cdfa4a36c5fbeed715297a89bacfa8753ddb (patch) | |
tree | a412fbc426e02dcae17586706ffa46d1c69c4ed9 /src/core/kdesktopfile.h | |
parent | 4c62867b4a38db28c29a063219b9d0f5c7f1cac6 (diff) | |
download | kconfig-2cd5cdfa4a36c5fbeed715297a89bacfa8753ddb.tar.gz kconfig-2cd5cdfa4a36c5fbeed715297a89bacfa8753ddb.tar.bz2 |
KDesktopFile: deprecate resource()
It is redundant since the parent class, KConfig, has locationType().
Add some API docs for fileName(), even though one could use KConfig::name()
from the parent class, I think this would be confusing given a .desktop file
has a Name= entry, so fileName() is less ambiguous.
These seem to be leftovers from a previous refactor that happened a long time
ago.
Diffstat (limited to 'src/core/kdesktopfile.h')
-rw-r--r-- | src/core/kdesktopfile.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/kdesktopfile.h b/src/core/kdesktopfile.h index 5cd739f1..445d98f6 100644 --- a/src/core/kdesktopfile.h +++ b/src/core/kdesktopfile.h @@ -238,9 +238,18 @@ public: */ KDesktopFile *copyTo(const QString &file) const; + /** + * Returns the name of the .desktop file that was used to construct this KDesktopFile. + */ QString fileName() const; +#if KCONFIGCORE_ENABLE_DEPRECATED_SINCE(5, 89) + /** + * @deprecated Since 5.89, use locationType() instead. + */ + KCONFIGCORE_DEPRECATED_VERSION(5, 89, "Use locationType() instead.") QStandardPaths::StandardLocation resource() const; +#endif private: Q_DISABLE_COPY(KDesktopFile) |