diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-24 10:56:49 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-25 15:11:59 +0900 |
| commit | 8308ebcedcc01c7588346da09b69b97b5c8e8059 (patch) | |
| tree | bb9c0496446fbfe6f04adcfd8f16b2e59061b6ec /languages/cpp/cppcodecompletion.cpp | |
| parent | 56e6314df839aa796a946452f8950b529aba18e6 (diff) | |
| download | tdevelop-8308ebcedcc01c7588346da09b69b97b5c8e8059.tar.gz tdevelop-8308ebcedcc01c7588346da09b69b97b5c8e8059.zip | |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit aefcba8280fc1520675866143baf2f8c020ec82e)
Diffstat (limited to 'languages/cpp/cppcodecompletion.cpp')
| -rw-r--r-- | languages/cpp/cppcodecompletion.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/languages/cpp/cppcodecompletion.cpp b/languages/cpp/cppcodecompletion.cpp index b032ac72..a62087ac 100644 --- a/languages/cpp/cppcodecompletion.cpp +++ b/languages/cpp/cppcodecompletion.cpp @@ -856,14 +856,14 @@ struct CppCodeCompletionData { if ( recoveryPoints.count() == 0 ) return 0; - TQPair<int, int> pt = tqMakePair( line, column ); + TQPair<int, int> pt = qMakePair( line, column ); TQPtrListIterator<RecoveryPoint> it( recoveryPoints ); RecoveryPoint* recPt = 0; while ( it.current() ) { - TQPair<int, int> startPt = tqMakePair( it.current() ->startLine, it.current() ->startColumn ); - TQPair<int, int> endPt = tqMakePair( it.current() ->endLine, it.current() ->endColumn ); + TQPair<int, int> startPt = qMakePair( it.current() ->startLine, it.current() ->startColumn ); + TQPair<int, int> endPt = qMakePair( it.current() ->endLine, it.current() ->endColumn ); if ( pt < startPt ) { break; |
