]> git.cworth.org Git - apitrace/commitdiff
Filter text was missing the first paren.
authorZack Rusin <zack@kde.org>
Wed, 13 Apr 2011 05:39:43 +0000 (01:39 -0400)
committerZack Rusin <zack@kde.org>
Wed, 13 Apr 2011 05:39:43 +0000 (01:39 -0400)
gui/apitracecall.cpp

index 76d50caf93f3e97064d7c381926b34fdc19becef..fcc61cc7494c0c7e6736effb9f15fa047c76c1e5 100644 (file)
@@ -323,6 +323,7 @@ QString ApiTraceCall::filterText() const
         return m_filterText;
 
     m_filterText = name;
+    m_filterText += QLatin1String("(");
     for (int i = 0; i < argNames.count(); ++i) {
         m_filterText += argNames[i];
         m_filterText += QString::fromLatin1(" = ");