summaryrefslogtreecommitdiffstats
path: root/kbarcode/dstextedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbarcode/dstextedit.cpp')
-rw-r--r--kbarcode/dstextedit.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kbarcode/dstextedit.cpp b/kbarcode/dstextedit.cpp
index 9a51d8f..88c5e0f 100644
--- a/kbarcode/dstextedit.cpp
+++ b/kbarcode/dstextedit.cpp
@@ -22,7 +22,7 @@
DSTextEdit::DSTextEdit( TQWidget* parent, const char* name )
: KTextEdit( parent, name )
{
- connect( this, TQT_SIGNAL( textChanged() ), this, TQT_SLOT( fixParagraphs() ) );
+ connect( this, TQ_SIGNAL( textChanged() ), this, TQ_SLOT( fixParagraphs() ) );
}
void DSTextEdit::fixParagraphs()
@@ -46,7 +46,7 @@ void DSTextEdit::fixParagraphs()
chars.append( paragraphLength( i ) );
// disconnect us first as we change the text here
- disconnect( this, TQT_SIGNAL( textChanged() ), this, TQT_SLOT( fixParagraphs() ) );
+ disconnect( this, TQ_SIGNAL( textChanged() ), this, TQ_SLOT( fixParagraphs() ) );
getCursorPosition( &para, &index );
getSelection( &paraFrom, &indexFrom, &paraTo, &indexTo );
@@ -105,7 +105,7 @@ void DSTextEdit::fixParagraphs()
this->setSelection( paraFrom, indexFrom, paraTo, indexTo );
- connect( this, TQT_SIGNAL( textChanged() ), this, TQT_SLOT( fixParagraphs() ) );
+ connect( this, TQ_SIGNAL( textChanged() ), this, TQ_SLOT( fixParagraphs() ) );
}
/*