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-24 10:56:49 +0900 |
commit | aefcba8280fc1520675866143baf2f8c020ec82e (patch) | |
tree | 2a60004ec9084f8560740d029a6adc2c637fd67e /languages/cpp/tqtdesignercppintegration.cpp | |
parent | 42d2a4fceca65d537b9454bb7de45029f89f4921 (diff) | |
download | tdevelop-aefcba8280fc1520675866143baf2f8c020ec82e.tar.gz tdevelop-aefcba8280fc1520675866143baf2f8c020ec82e.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'languages/cpp/tqtdesignercppintegration.cpp')
-rw-r--r-- | languages/cpp/tqtdesignercppintegration.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/languages/cpp/tqtdesignercppintegration.cpp b/languages/cpp/tqtdesignercppintegration.cpp index 6132f758..10472ad8 100644 --- a/languages/cpp/tqtdesignercppintegration.cpp +++ b/languages/cpp/tqtdesignercppintegration.cpp @@ -68,7 +68,7 @@ void QtDesignerCppIntegration::addFunctionToClass( KInterfaceDesigner::Function int funEndLine, funEndColumn; ( *it ) ->getEndPosition( &funEndLine, &funEndColumn ); TQString access = accessID( *it ); - TQPair<int, int> funEndPoint = tqMakePair( funEndLine, funEndColumn ); + TQPair<int, int> funEndPoint = qMakePair( funEndLine, funEndColumn ); if ( !points.contains( access ) || points[ access ] < funEndPoint ) { @@ -98,7 +98,7 @@ void QtDesignerCppIntegration::addFunctionToClass( KInterfaceDesigner::Function else { str.prepend( access + ":\n" ); - points[ access ] = tqMakePair( line - 1, 0 ); + points[ access ] = qMakePair( line - 1, 0 ); pt = points[ access ]; // end of class declaration } |