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:41 +0200 |
commit | da5f2926ef582117ba27caff62af7d7a90ae64f9 (patch) | |
tree | 6d3ac0a8b4df2e928d358ff302c86977aef24459 | |
parent | f7c612701d16575aa3dcfa8cef43b459a28d81a0 (diff) | |
download | kxmleditor-da5f2926ef582117ba27caff62af7d7a90ae64f9.tar.gz kxmleditor-da5f2926ef582117ba27caff62af7d7a90ae64f9.zip |
Fix FTBFS with clang.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 4e16ef22eb014b11d35232165c22a63930b2eca9)
-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; |