summaryrefslogtreecommitdiffstats
path: root/kspread/kspread_doc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kspread/kspread_doc.cpp')
-rw-r--r--kspread/kspread_doc.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kspread/kspread_doc.cpp b/kspread/kspread_doc.cpp
index 99feebe50..17f02d487 100644
--- a/kspread/kspread_doc.cpp
+++ b/kspread/kspread_doc.cpp
@@ -209,8 +209,8 @@ Doc::Doc( TQWidget *parentWidget, const char *widgetName, TQObject* parent, cons
d->undoLocked = 0;
d->commandHistory = new KoCommandHistory( actionCollection() );
- connect( d->commandHistory, TQT_SIGNAL( commandExecuted() ), TQT_SLOT( commandExecuted() ) );
- connect( d->commandHistory, TQT_SIGNAL( documentRestored() ), TQT_SLOT( documentRestored() ) );
+ connect( d->commandHistory, TQ_SIGNAL( commandExecuted() ), TQ_SLOT( commandExecuted() ) );
+ connect( d->commandHistory, TQ_SIGNAL( documentRestored() ), TQ_SLOT( documentRestored() ) );
// Make us scripsheet if the document has a name
@@ -2331,7 +2331,7 @@ void Doc::addDamage( Damage* damage )
d->damages.append( damage );
if( d->damages.count() == 1 )
- TQTimer::singleShot( 0, this, TQT_SLOT( flushDamages() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( flushDamages() ) );
}
void Doc::flushDamages()
@@ -2421,7 +2421,7 @@ void Doc::repaint( const KoRect& rect )
void Doc::addShell( KoMainWindow *shell )
{
- connect( shell, TQT_SIGNAL( documentSaved() ), d->commandHistory, TQT_SLOT( documentSaved() ) );
+ connect( shell, TQ_SIGNAL( documentSaved() ), d->commandHistory, TQ_SLOT( documentSaved() ) );
KoDocument::addShell( shell );
}