summaryrefslogtreecommitdiff
blob: 8e5bd5590874fe01c4074e19e1058da266242fa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Index: tools/designer/uic/form.cpp
===================================================================
--- tools/designer/uic/form.cpp	(revision 460038)
+++ 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();