diff options
author | Slávek Banko <[email protected]> | 2018-11-04 12:42:19 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-11-04 12:51:16 +0100 |
commit | c1821ba5d7c9a7c16eac8029f823ac07109251d2 (patch) | |
tree | 0860ba8fd3479309e3812e3f70c53ce22110b307 | |
parent | 352e8157495ef343c86dc9b3d1826fe262222740 (diff) | |
download | kdirstat-c1821ba5d7c9a7c16eac8029f823ac07109251d2.tar.gz kdirstat-c1821ba5d7c9a7c16eac8029f823ac07109251d2.zip |
Fix forward class declaration.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit ed22bfe07b4bc97b72a9d73cfca8284eba2a5505)
-rw-r--r-- | kdirstat/kstdcleanup.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kdirstat/kstdcleanup.h b/kdirstat/kstdcleanup.h index c5114d4..a89cd9c 100644 --- a/kdirstat/kstdcleanup.h +++ b/kdirstat/kstdcleanup.h @@ -18,11 +18,13 @@ // Forward declarations class TDEActionCollection; -class KDirStat::KCleanup; namespace KDirStat { + // Forward declarations + class KCleanup; + /** * Predefined standard @ref KCleanup actions to be performed on * @ref KDirTree items. |