diff options
Diffstat (limited to 'parts/abbrev')
-rw-r--r-- | parts/abbrev/abbrevpart.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parts/abbrev/abbrevpart.cpp b/parts/abbrev/abbrevpart.cpp index 4e695114..d2ec291f 100644 --- a/parts/abbrev/abbrevpart.cpp +++ b/parts/abbrev/abbrevpart.cpp @@ -302,7 +302,7 @@ TQValueList<KTextEditor::CompletionEntry> AbbrevPart::findAllWords(const TQStrin KTextEditor::CompletionEntry e; e.text = word; entries << e; - map[ word ] = TRUE; + map[ word ] = true; } idx = pos + len + 1; } @@ -317,7 +317,7 @@ TQValueList<KTextEditor::CompletionEntry> AbbrevPart::findAllWords(const TQStrin KTextEditor::CompletionEntry e; e.text = word; entries << e; - map[ word ] = TRUE; + map[ word ] = true; } idx = pos + len + 1; } |