diff --git a/qt/pool.h b/qt/pool.h index b59829b7..746636d9 100644 --- a/qt/pool.h +++ b/qt/pool.h @@ -80,6 +80,8 @@ class APPSTREAMQT_EXPORT Pool : public QObject * None: No flags. * UseUser: Create an user-specific metadata cache. * UseSystem: Use and - if possible - update the global metadata cache. + * NoClear: Don't clear the cache when opening it. + * RefreshSystem: Refresh the system cache that is shared between applications. * * Flags on how caching should be used. **/ @@ -87,6 +89,8 @@ class APPSTREAMQT_EXPORT Pool : public QObject CacheFlagNone [[deprecated]] = 0, CacheFlagUseUser [[deprecated]] = 1 << 0, CacheFlagUseSystem [[deprecated]] = 1 << 1, + CacheFlagNoClear [[deprecated]] = 1 << 2, + CacheFlagRefreshSystem [[deprecated]] = 1 << 3, }; /**