summaryrefslogtreecommitdiffstats
path: root/kmail/kmedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/kmedit.cpp')
-rw-r--r--kmail/kmedit.cpp58
1 files changed, 29 insertions, 29 deletions
diff --git a/kmail/kmedit.cpp b/kmail/kmedit.cpp
index 1fe54648..b66e6ee6 100644
--- a/kmail/kmedit.cpp
+++ b/kmail/kmedit.cpp
@@ -226,21 +226,21 @@ KMEdit::KMEdit(TQWidget *parent, KMComposeWin* composer,
mSpellLineEdit( false ),
mPasteMode( TQClipboard::Clipboard )
{
- connect( this, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(slotSelectionChanged()) );
+ connect( this, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(slotSelectionChanged()) );
installEventFilter(this);
KCursor::setAutoHideCursor( this, true, true );
setOverwriteEnabled( true );
createSpellers();
- connect( mSpellConfig, TQT_SIGNAL( configChanged() ),
- this, TQT_SLOT( createSpellers() ) );
- connect( mSpeller, TQT_SIGNAL( death() ),
- this, TQT_SLOT( spellerDied() ) );
+ connect( mSpellConfig, TQ_SIGNAL( configChanged() ),
+ this, TQ_SLOT( createSpellers() ) );
+ connect( mSpeller, TQ_SIGNAL( death() ),
+ this, TQ_SLOT( spellerDied() ) );
}
void KMEdit::createSpellers()
{
delete mSpeller;
- mSpeller = new KMSpell( TQT_TQOBJECT(this), TQT_SLOT( spellerReady( KSpell * ) ), mSpellConfig );
+ mSpeller = new KMSpell( this, TQ_SLOT( spellerReady( KSpell * ) ), mSpellConfig );
}
void KMEdit::initializeAutoSpellChecking()
@@ -270,8 +270,8 @@ void KMEdit::initializeAutoSpellChecking()
col1, col2, col3, col4,
mSpellConfig );
- connect( mHighlighter, TQT_SIGNAL(newSuggestions(const TQString&, const TQStringList&, unsigned int)),
- this, TQT_SLOT(addSuggestion(const TQString&, const TQStringList&, unsigned int)) );
+ connect( mHighlighter, TQ_SIGNAL(newSuggestions(const TQString&, const TQStringList&, unsigned int)),
+ this, TQ_SLOT(addSuggestion(const TQString&, const TQStringList&, unsigned int)) );
}
@@ -412,7 +412,7 @@ void KMEdit::spellerReady( KSpell *spell )
bool KMEdit::eventFilter(TQObject*o, TQEvent* e)
{
- if (TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(this))
+ if (o == this)
KCursor::autoHideEventFilter(o, e);
if (e->type() == TQEvent::KeyPress)
@@ -449,17 +449,17 @@ bool KMEdit::eventFilter(TQObject*o, TQEvent* e)
*mExtEditorProcess << sysLine.left(sysLine.find(" ")).local8Bit();
sysLine.remove(0, sysLine.find(" ") + 1);
}
- connect(mExtEditorProcess, TQT_SIGNAL(processExited(TDEProcess*)),
- TQT_SLOT(slotExternalEditorDone(TDEProcess*)));
+ connect(mExtEditorProcess, TQ_SIGNAL(processExited(TDEProcess*)),
+ TQ_SLOT(slotExternalEditorDone(TDEProcess*)));
if (!mExtEditorProcess->start())
{
KMessageBox::error( topLevelWidget(),
i18n("Unable to start external editor.") );
killExternalEditor();
} else {
- mExtEditorTempFileWatcher = new KDirWatch( TQT_TQOBJECT(this), "mExtEditorTempFileWatcher" );
- connect( mExtEditorTempFileWatcher, TQT_SIGNAL(dirty(const TQString&)),
- TQT_SLOT(slotExternalEditorTempFileChanged(const TQString&)) );
+ mExtEditorTempFileWatcher = new KDirWatch( this, "mExtEditorTempFileWatcher" );
+ connect( mExtEditorTempFileWatcher, TQ_SIGNAL(dirty(const TQString&)),
+ TQ_SLOT(slotExternalEditorTempFileChanged(const TQString&)) );
mExtEditorTempFileWatcher->addFile( mExtEditorTempFile->name() );
}
return true;
@@ -542,7 +542,7 @@ bool KMEdit::eventFilter(TQObject*o, TQEvent* e)
if ( mHighlighter ) {
// Wait a bit until reloading the highlighter, the mSpeller first needs to finish saving
// the personal word list.
- TQTimer::singleShot( 200, mHighlighter, TQT_SLOT( slotLocalSpellConfigChanged() ) );
+ TQTimer::singleShot( 200, mHighlighter, TQ_SLOT( slotLocalSpellConfigChanged() ) );
}
}
else if( id > -1 )
@@ -569,7 +569,7 @@ bool KMEdit::eventFilter(TQObject*o, TQEvent* e)
}
}
} else if ( e->type() == TQEvent::FocusIn || e->type() == TQEvent::FocusOut ) {
- TQFocusEvent *fe = TQT_TQFOCUSEVENT(e);
+ TQFocusEvent *fe = static_cast<TQFocusEvent*>(e);
if(! (fe->reason() == TQFocusEvent::ActiveWindow || fe->reason() == TQFocusEvent::Popup) )
emit focusChanged( fe->gotFocus() );
}
@@ -651,28 +651,28 @@ void KMEdit::spellcheck()
// if (textFormat() == TQt::RichText ) {
// kdDebug(5006) << "KMEdit::spellcheck, spellchecking for RichText" << endl;
// mKSpellForDialog = new KSpell(this, i18n("Spellcheck - KMail"), this,
-// TQT_SLOT(slotSpellcheck2(KSpell*)),0,true,false,KSpell::HTML);
+// TQ_SLOT(slotSpellcheck2(KSpell*)),0,true,false,KSpell::HTML);
// }
// else {
// Don't use mSpellConfig here. Reason is that the spell dialog, KSpellDlg, uses its own
// spell config, and therefore the two wouldn't be in sync.
- mKSpellForDialog = new KSpell( TQT_TQWIDGET(this), i18n("Spellcheck - KMail"), TQT_TQOBJECT(this),
- TQT_SLOT(slotSpellcheck2(KSpell*))/*, mSpellConfig*/ );
+ mKSpellForDialog = new KSpell( this, i18n("Spellcheck - KMail"), this,
+ TQ_SLOT(slotSpellcheck2(KSpell*))/*, mSpellConfig*/ );
// }
TQStringList l = KSpellingHighlighter::personalWords();
for ( TQStringList::Iterator it = l.begin(); it != l.end(); ++it ) {
mKSpellForDialog->addPersonal( *it );
}
- connect (mKSpellForDialog, TQT_SIGNAL( death()),
- this, TQT_SLOT (slotSpellDone()));
- connect (mKSpellForDialog, TQT_SIGNAL (misspelling (const TQString &, const TQStringList &, unsigned int)),
- this, TQT_SLOT (slotMisspelling (const TQString &, const TQStringList &, unsigned int)));
- connect (mKSpellForDialog, TQT_SIGNAL (corrected (const TQString &, const TQString &, unsigned int)),
- this, TQT_SLOT (slotCorrected (const TQString &, const TQString &, unsigned int)));
- connect (mKSpellForDialog, TQT_SIGNAL (done(const TQString &)),
- this, TQT_SLOT (slotSpellResult (const TQString&)));
+ connect (mKSpellForDialog, TQ_SIGNAL( death()),
+ this, TQ_SLOT (slotSpellDone()));
+ connect (mKSpellForDialog, TQ_SIGNAL (misspelling (const TQString &, const TQStringList &, unsigned int)),
+ this, TQ_SLOT (slotMisspelling (const TQString &, const TQStringList &, unsigned int)));
+ connect (mKSpellForDialog, TQ_SIGNAL (corrected (const TQString &, const TQString &, unsigned int)),
+ this, TQ_SLOT (slotCorrected (const TQString &, const TQString &, unsigned int)));
+ connect (mKSpellForDialog, TQ_SIGNAL (done(const TQString &)),
+ this, TQ_SLOT (slotSpellResult (const TQString&)));
}
void KMEdit::cut()
@@ -708,7 +708,7 @@ void KMEdit::paste()
// Roll our own internal flag.
void KMEdit::contentsMouseReleaseEvent( TQMouseEvent * e )
{
- if( e->button() != Qt::MidButton )
+ if( e->button() != TQt::MidButton )
return KEdit::contentsMouseReleaseEvent( e );
mPasteMode = TQClipboard::Selection;
KEdit::contentsMouseReleaseEvent( e );
@@ -718,7 +718,7 @@ void KMEdit::contentsMouseReleaseEvent( TQMouseEvent * e )
void KMEdit::contentsMouseDoubleClickEvent( TQMouseEvent *e )
{
bool handled = false;
- if ( e->button() == Qt::LeftButton ) {
+ if ( e->button() == TQt::LeftButton ) {
// Get the cursor position for the place where the user clicked to
int paragraphPos;