summaryrefslogtreecommitdiffstats
path: root/filters/kspread/html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:30:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 12:36:03 +0900
commitc0332621bc998c9786f4841e86a62b7711fe4abf (patch)
tree38b3ab6688de7a9396a1c5993a8ec265f5f33b64 /filters/kspread/html
parent6c81ff8d61ec679e735d3fbd875583b12f0ef0a5 (diff)
downloadkoffice-c0332621bc998c9786f4841e86a62b7711fe4abf.tar.gz
koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'filters/kspread/html')
-rw-r--r--filters/kspread/html/exportdialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/filters/kspread/html/exportdialog.cpp b/filters/kspread/html/exportdialog.cpp
index 8df7e0ce..f0dd28d2 100644
--- a/filters/kspread/html/exportdialog.cpp
+++ b/filters/kspread/html/exportdialog.cpp
@@ -37,11 +37,11 @@ ExportDialog::ExportDialog( TQWidget *parent, const char *name )
{
kapp->restoreOverrideCursor();
- connect( m_mainwidget->mCustomButton, TQT_SIGNAL( toggled( bool ) ),
- m_mainwidget->mCustomURL, TQT_SLOT( setEnabled( bool ) ) );
- connect( m_mainwidget->mSelectAllButton, TQT_SIGNAL( clicked() ), TQT_SLOT( selectAll() ) );
- connect( m_mainwidget->mDeselectAllButton, TQT_SIGNAL( clicked() ),
- m_mainwidget->mSheets, TQT_SLOT( clearSelection() ) );
+ connect( m_mainwidget->mCustomButton, TQ_SIGNAL( toggled( bool ) ),
+ m_mainwidget->mCustomURL, TQ_SLOT( setEnabled( bool ) ) );
+ connect( m_mainwidget->mSelectAllButton, TQ_SIGNAL( clicked() ), TQ_SLOT( selectAll() ) );
+ connect( m_mainwidget->mDeselectAllButton, TQ_SIGNAL( clicked() ),
+ m_mainwidget->mSheets, TQ_SLOT( clearSelection() ) );
m_mainwidget->mEncodingBox->insertItem( i18n( "Recommended: UTF-8" ) );
m_mainwidget->mEncodingBox->insertItem( i18n( "Locale (%1)" ).arg( TDEGlobal::locale()->codecForEncoding()->name() ) );