diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2020-07-10 11:28:23 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-07-10 11:28:23 +0200 |
commit | 4e16ef22eb014b11d35232165c22a63930b2eca9 (patch) | |
tree | 6a7d7fe51879059a2f317c1344f4c0c430adc022 | |
parent | f6b7bbc87584103011e9befd2795b7a3a850582c (diff) | |
download | kxmleditor-4e16ef22eb014b11d35232165c22a63930b2eca9.tar.gz kxmleditor-4e16ef22eb014b11d35232165c22a63930b2eca9.zip |
Fix FTBFS with clang.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r-- | kxmleditor/kxmleditorshell.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kxmleditor/kxmleditorshell.h b/kxmleditor/kxmleditorshell.h index b5f47e0..438c32c 100644 --- a/kxmleditor/kxmleditorshell.h +++ b/kxmleditor/kxmleditorshell.h @@ -24,7 +24,9 @@ #include <tdeparts/mainwindow.h> -class KParts::ReadWritePart; +namespace KParts { + class ReadWritePart; +} class KXMLEditorShellIface; class TDEAction; class KXEShellManager; |