summaryrefslogtreecommitdiffstats
path: root/kspread/kspread_sheet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kspread/kspread_sheet.cpp')
-rw-r--r--kspread/kspread_sheet.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kspread/kspread_sheet.cpp b/kspread/kspread_sheet.cpp
index 8a4cf50a..2240c67d 100644
--- a/kspread/kspread_sheet.cpp
+++ b/kspread/kspread_sheet.cpp
@@ -423,11 +423,11 @@ Sheet::Sheet (Map* map,
d->dependencies = new KSpread::DependencyManager (this);
// connect to named area slots
- TQObject::connect( doc(), TQT_SIGNAL( sig_addAreaName( const TQString & ) ),
- this, TQT_SLOT( slotAreaModified( const TQString & ) ) );
+ TQObject::connect( doc(), TQ_SIGNAL( sig_addAreaName( const TQString & ) ),
+ this, TQ_SLOT( slotAreaModified( const TQString & ) ) );
- TQObject::connect( doc(), TQT_SIGNAL( sig_removeAreaName( const TQString & ) ),
- this, TQT_SLOT( slotAreaModified( const TQString & ) ) );
+ TQObject::connect( doc(), TQ_SIGNAL( sig_removeAreaName( const TQString & ) ),
+ this, TQ_SLOT( slotAreaModified( const TQString & ) ) );
}
@@ -2989,11 +2989,11 @@ void Sheet::replace( const TQString &_find, const TQString &_replace, long optio
// local slots.
KReplace dialog( _find, _replace, options );
TQObject::connect(
- &dialog, TQT_SIGNAL( highlight( const TQString &, int, int, const TQRect & ) ),
- canvas, TQT_SLOT( highlight( const TQString &, int, int, const TQRect & ) ) );
+ &dialog, TQ_SIGNAL( highlight( const TQString &, int, int, const TQRect & ) ),
+ canvas, TQ_SLOT( highlight( const TQString &, int, int, const TQRect & ) ) );
TQObject::connect(
- &dialog, TQT_SIGNAL( replace( const TQString &, int, int,int, const TQRect & ) ),
- canvas, TQT_SLOT( replace( const TQString &, int, int,int, const TQRect & ) ) );
+ &dialog, TQ_SIGNAL( replace( const TQString &, int, int,int, const TQRect & ) ),
+ canvas, TQ_SLOT( replace( const TQString &, int, int,int, const TQRect & ) ) );
// Now do the replacing...
if ( !doc()->undoLocked() )