summaryrefslogtreecommitdiffstats
path: root/languages/cpp/addattributedialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/addattributedialog.cpp')
-rw-r--r--languages/cpp/addattributedialog.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/languages/cpp/addattributedialog.cpp b/languages/cpp/addattributedialog.cpp
index 6a9a1fbc..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
}
@@ -261,5 +261,3 @@ TQString AddAttributeDialog::accessID( VariableDom var ) const
}
#include "addattributedialog.moc"
-//kate: indent-mode csands; tab-width 4; space-indent off;
-