Squish: Fix tst_SCOM05

Change-Id: I63b5266639a272ee94cc50978f87634f09ff4177
Reviewed-by: Robert Loehning <robert.loehning@digia.com>
This commit is contained in:
Christian Stenger
2013-01-31 17:08:05 +01:00
parent 54d662c2cd
commit df1f7796ba
2 changed files with 13 additions and 2 deletions
+2
View File
@@ -289,6 +289,8 @@ def invokeFindUsage(editor, line, typeOperation, n=1):
def addBranchWildcardToRoot(rootNode):
pos = rootNode.find(".")
if pos == -1:
return rootNode + " (*)"
return rootNode[:pos] + " (*)" + rootNode[pos:]
def openDocument(treeElement):