diff options
author | Alexander Golubev <fatzer2@gmail.com> | 2025-08-20 12:36:34 +0300 |
---|---|---|
committer | Alexander Golubev <fatzer2@gmail.com> | 2025-08-21 14:20:52 +0300 |
commit | 7f216eca4baab637958d22e1334cdf68ecf69a32 (patch) | |
tree | 12aa93452bde074407478d037a8c2189dbdc35c7 | |
parent | c14117aa01b059921cfea5a3e70507163b311025 (diff) | |
download | kommando-r14.1.x.tar.gz kommando-r14.1.x.zip |
Use <include> rather than <includehint> in .ui filer14.1.x
This fixes FTBFS on a system with minimal-ish configuration of
tqt/tdelibs.
Note: tqtdesigner also wants to resave thees <includehints> as
<includes>. I suspect the former one were used by some earlier versions
of designer.
Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
(cherry picked from commit cc7db76b2ac4073e2a4274b854cc8f9f12d89d66)
-rw-r--r-- | src/configdialog.ui | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/configdialog.ui b/src/configdialog.ui index 7315486..7a707a7 100644 --- a/src/configdialog.ui +++ b/src/configdialog.ui @@ -997,9 +997,9 @@ <slot>slotRemoveListViewClicked()</slot> </slots> <layoutdefaults spacing="6" margin="11"/> -<includehints> - <includehint>kicondialog.h</includehint> - <includehint>kcolorbutton.h</includehint> - <includehint>kkeybutton.h</includehint> -</includehints> +<includes> + <include location="global" impldecl="in implementation">kicondialog.h</include> + <include location="global" impldecl="in implementation">kcolorbutton.h</include> + <include location="global" impldecl="in implementation">kkeybutton.h</include> +</includes> </UI> |