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/addattributedialog.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/addattributedialog.cpp')
-rw-r--r-- | languages/cpp/addattributedialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/languages/cpp/addattributedialog.cpp b/languages/cpp/addattributedialog.cpp index d6dd5290..0808d7af 100644 --- a/languages/cpp/addattributedialog.cpp +++ b/languages/cpp/addattributedialog.cpp @@ -100,7 +100,7 @@ void AddAttributeDialog::accept() int varEndLine, varEndColumn; ( *it ) ->getEndPosition( &varEndLine, &varEndColumn ); TQString access = accessID( *it ); - TQPair<int, int> varEndPoint = tqMakePair( varEndLine, varEndColumn ); + TQPair<int, int> varEndPoint = qMakePair( varEndLine, varEndColumn ); if ( !points.contains( access ) || points[ access ] < varEndPoint ) { @@ -139,7 +139,7 @@ void AddAttributeDialog::accept() else { str.prepend( access + ":\n" ); - points[ *it ] = tqMakePair( line - 1, 0 ); + points[ *it ] = qMakePair( line - 1, 0 ); pt = points[ *it ]; // end of class declaration } |