aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/cplusplus/MatchingText.h
diff options
context:
space:
mode:
authorRoberto Raggi <[email protected]>2009-09-17 18:39:10 +0200
committerRoberto Raggi <[email protected]>2009-09-17 18:39:10 +0200
commitda4fcd22ef4f15234a97f05d6fb5ae7a9e7ba56f (patch)
tree179c2ef747c05a89241d8db080cdb68bd02a1173 /src/libs/cplusplus/MatchingText.h
parent82b80b9e3946083ec0a9f2cb8415b32503790136 (diff)
Pass the lookahead character to matching text.
Diffstat (limited to 'src/libs/cplusplus/MatchingText.h')
-rw-r--r--src/libs/cplusplus/MatchingText.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/cplusplus/MatchingText.h b/src/libs/cplusplus/MatchingText.h
index f964c424543..bfb21aa68d6 100644
--- a/src/libs/cplusplus/MatchingText.h
+++ b/src/libs/cplusplus/MatchingText.h
@@ -41,7 +41,8 @@ class CPLUSPLUS_EXPORT MatchingText
public:
MatchingText();
- QString insertMatchingBrace(const QTextCursor &tc, const QString &text, int *skippedChars) const;
+ QString insertMatchingBrace(const QTextCursor &tc, const QString &text,
+ const QChar &la, int *skippedChars) const;
QString insertParagraphSeparator(const QTextCursor &tc) const;
};