a5dac8ed81
- add uic workaround
19 lines
717 B
Diff
19 lines
717 B
Diff
Index: tools/designer/uic/form.cpp
|
|
===================================================================
|
|
--- qt/tools/designer/uic/form.cpp (revision 460038)
|
|
+++ qt/tools/designer/uic/form.cpp (working copy)
|
|
@@ -731,6 +731,13 @@
|
|
while ( !n2.isNull() ) {
|
|
if ( n2.tagName() == "includehint" ) {
|
|
QString file = n2.firstChild().toText().data();
|
|
+ int colons = file.find("::");
|
|
+
|
|
+ if (colons != -1)
|
|
+ {
|
|
+ file = file.right(file.length() - colons - 2);
|
|
+ }
|
|
+
|
|
localIncludes += file;
|
|
}
|
|
n2 = n2.nextSibling().toElement();
|