summaryrefslogtreecommitdiffstats
path: root/filters
diff options
context:
space:
mode:
Diffstat (limited to 'filters')
-rw-r--r--filters/chalk/pdf/kis_pdf_import_widget.cpp16
-rw-r--r--filters/chalk/raw/kis_raw_import.cpp14
-rw-r--r--filters/chalk/tiff/kis_dlg_options_tiff.cpp4
-rw-r--r--filters/kformula/png/pngexportdia.cpp36
-rw-r--r--filters/kspread/csv/csvdialog.cpp36
-rw-r--r--filters/kspread/csv/csvexportdialog.cpp20
-rw-r--r--filters/kspread/html/exportdialog.cpp10
-rw-r--r--filters/kspread/kexi/kspread_kexiimportdialog.cpp4
-rw-r--r--filters/kword/html/export/ExportDialog.cpp8
-rw-r--r--filters/kword/html/import/tdehtmlreader.cpp2
-rw-r--r--filters/kword/msword/document.cpp28
-rw-r--r--filters/kword/mswrite/ImportDialog.cpp4
-rw-r--r--filters/kword/pdf/dialog.cpp4
-rw-r--r--filters/libdialogfilter/exportsizedia.cpp36
-rw-r--r--filters/olefilters/olefilter.cpp30
-rw-r--r--filters/olefilters/powerpoint97/powerpointfilter.cpp12
16 files changed, 132 insertions, 132 deletions
diff --git a/filters/chalk/pdf/kis_pdf_import_widget.cpp b/filters/chalk/pdf/kis_pdf_import_widget.cpp
index 572efbd5..bca53d12 100644
--- a/filters/chalk/pdf/kis_pdf_import_widget.cpp
+++ b/filters/chalk/pdf/kis_pdf_import_widget.cpp
@@ -41,14 +41,14 @@ KisPDFImportWidget::KisPDFImportWidget(Poppler::Document* pdfDoc, TQWidget * par
listPages->insertItem(TQString::number( i ) );
}
- connect(intWidth, TQT_SIGNAL( valueChanged ( int ) ), this, TQT_SLOT( updateHRes() ) );
- connect(intHeight, TQT_SIGNAL( valueChanged ( int ) ), this, TQT_SLOT( updateHVer() ) );
- connect(intHorizontal, TQT_SIGNAL( valueChanged ( int ) ), this, TQT_SLOT( updateWidth() ) );
- connect(intVertical, TQT_SIGNAL( valueChanged ( int ) ), this, TQT_SLOT( updateHeight() ) );
- connect(boolAllPages, TQT_SIGNAL( toggled ( bool ) ), this, TQT_SLOT( selectAllPages( bool ) ) );
- connect(boolFirstPage, TQT_SIGNAL( toggled ( bool ) ), this, TQT_SLOT( selectFirstPage( bool ) ) );
- connect(boolSelectionPage, TQT_SIGNAL( toggled ( bool ) ), this, TQT_SLOT( selectSelectionOfPages( bool ) ) );
- connect(listPages, TQT_SIGNAL(selectionChanged () ), this, TQT_SLOT(updateSelectionOfPages()));
+ connect(intWidth, TQ_SIGNAL( valueChanged ( int ) ), this, TQ_SLOT( updateHRes() ) );
+ connect(intHeight, TQ_SIGNAL( valueChanged ( int ) ), this, TQ_SLOT( updateHVer() ) );
+ connect(intHorizontal, TQ_SIGNAL( valueChanged ( int ) ), this, TQ_SLOT( updateWidth() ) );
+ connect(intVertical, TQ_SIGNAL( valueChanged ( int ) ), this, TQ_SLOT( updateHeight() ) );
+ connect(boolAllPages, TQ_SIGNAL( toggled ( bool ) ), this, TQ_SLOT( selectAllPages( bool ) ) );
+ connect(boolFirstPage, TQ_SIGNAL( toggled ( bool ) ), this, TQ_SLOT( selectFirstPage( bool ) ) );
+ connect(boolSelectionPage, TQ_SIGNAL( toggled ( bool ) ), this, TQ_SLOT( selectSelectionOfPages( bool ) ) );
+ connect(listPages, TQ_SIGNAL(selectionChanged () ), this, TQ_SLOT(updateSelectionOfPages()));
}
diff --git a/filters/chalk/raw/kis_raw_import.cpp b/filters/chalk/raw/kis_raw_import.cpp
index 873fdf2b..2a009792 100644
--- a/filters/chalk/raw/kis_raw_import.cpp
+++ b/filters/chalk/raw/kis_raw_import.cpp
@@ -86,9 +86,9 @@ KisRawImport::KisRawImport(KoFilter *, const char *, const TQStringList&)
m_page = new WdgRawImport(m_dialog);
m_dialog -> setMainWidget(m_page);
- connect(m_page->bnPreview, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotUpdatePreview()));
- connect(m_page->grpColorSpace, TQT_SIGNAL(clicked( int )), this, TQT_SLOT(slotFillCmbProfiles()));
- connect(m_page->grpChannelDepth, TQT_SIGNAL(clicked( int )), this, TQT_SLOT(slotFillCmbProfiles()));
+ connect(m_page->bnPreview, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotUpdatePreview()));
+ connect(m_page->grpColorSpace, TQ_SIGNAL(clicked( int )), this, TQ_SLOT(slotFillCmbProfiles()));
+ connect(m_page->grpChannelDepth, TQ_SIGNAL(clicked( int )), this, TQ_SLOT(slotFillCmbProfiles()));
KisConfig cfg;
TQString monitorProfileName = cfg.monitorProfile();
@@ -185,7 +185,7 @@ KoFilter::ConversionStatus KisRawImport::convert(const TQCString& from, const TQ
m_progress -> setTotalSteps(0);
m_progress -> setCancelButton(0);
TQTimer timer;
- connect(&timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(incrementProgress()));
+ connect(&timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(incrementProgress()));
timer.start(200);
doc -> undoAdapter() -> setUndo(false);
@@ -421,9 +421,9 @@ void KisRawImport::getImageData( TQStringList arguments )
}
process.setUseShell(true);
- connect(&process, TQT_SIGNAL(receivedStdout(TDEProcess *, char *, int)), this, TQT_SLOT(slotReceivedStdout(TDEProcess *, char *, int)));
- connect(&process, TQT_SIGNAL(receivedStderr(TDEProcess *, char *, int)), this, TQT_SLOT(slotReceivedStderr(TDEProcess *, char *, int)));
- connect(&process, TQT_SIGNAL(processExited(TDEProcess *)), this, TQT_SLOT(slotProcessDone()));
+ connect(&process, TQ_SIGNAL(receivedStdout(TDEProcess *, char *, int)), this, TQ_SLOT(slotReceivedStdout(TDEProcess *, char *, int)));
+ connect(&process, TQ_SIGNAL(receivedStderr(TDEProcess *, char *, int)), this, TQ_SLOT(slotReceivedStderr(TDEProcess *, char *, int)));
+ connect(&process, TQ_SIGNAL(processExited(TDEProcess *)), this, TQ_SLOT(slotProcessDone()));
kdDebug(41008) << "Starting process\n";
diff --git a/filters/chalk/tiff/kis_dlg_options_tiff.cpp b/filters/chalk/tiff/kis_dlg_options_tiff.cpp
index 70e67938..43857e9b 100644
--- a/filters/chalk/tiff/kis_dlg_options_tiff.cpp
+++ b/filters/chalk/tiff/kis_dlg_options_tiff.cpp
@@ -35,8 +35,8 @@ KisDlgOptionsTIFF::KisDlgOptionsTIFF(TQWidget *parent, const char *name)
{
optionswdg = new KisWdgOptionsTIFF(this);
activated(0);
- connect(optionswdg->kComboBoxCompressionType, TQT_SIGNAL(activated ( int )), this, TQT_SLOT(activated ( int ) ));
- connect(optionswdg->flatten, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(flattenToggled( bool) ) );
+ connect(optionswdg->kComboBoxCompressionType, TQ_SIGNAL(activated ( int )), this, TQ_SLOT(activated ( int ) ));
+ connect(optionswdg->flatten, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(flattenToggled( bool) ) );
setMainWidget(optionswdg);
kapp->restoreOverrideCursor();
setSizePolicy(TQSizePolicy(TQSizePolicy::Minimum, TQSizePolicy::Minimum) );
diff --git a/filters/kformula/png/pngexportdia.cpp b/filters/kformula/png/pngexportdia.cpp
index 938fed78..c63d276d 100644
--- a/filters/kformula/png/pngexportdia.cpp
+++ b/filters/kformula/png/pngexportdia.cpp
@@ -63,8 +63,8 @@ PNGExportDia::PNGExportDia( const TQDomDocument &dom, const TQString &outFile, T
percHeightEdit->setValue( 100 );
connectAll();
- connect( proportional, TQT_SIGNAL( clicked() ),
- this, TQT_SLOT( proportionalClicked() ) );
+ connect( proportional, TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( proportionalClicked() ) );
}
PNGExportDia::~PNGExportDia()
@@ -74,26 +74,26 @@ PNGExportDia::~PNGExportDia()
void PNGExportDia::connectAll()
{
- connect( widthEdit, TQT_SIGNAL( valueChanged(int) ),
- this, TQT_SLOT( widthChanged( int ) ) );
- connect( heightEdit, TQT_SIGNAL( valueChanged(int) ),
- this, TQT_SLOT( heightChanged( int ) ) );
- connect( percWidthEdit, TQT_SIGNAL( valueChanged(double) ),
- this, TQT_SLOT( percentWidthChanged( double ) ) );
- connect( percHeightEdit, TQT_SIGNAL( valueChanged(double) ),
- this, TQT_SLOT( percentHeightChanged(double ) ) );
+ connect( widthEdit, TQ_SIGNAL( valueChanged(int) ),
+ this, TQ_SLOT( widthChanged( int ) ) );
+ connect( heightEdit, TQ_SIGNAL( valueChanged(int) ),
+ this, TQ_SLOT( heightChanged( int ) ) );
+ connect( percWidthEdit, TQ_SIGNAL( valueChanged(double) ),
+ this, TQ_SLOT( percentWidthChanged( double ) ) );
+ connect( percHeightEdit, TQ_SIGNAL( valueChanged(double) ),
+ this, TQ_SLOT( percentHeightChanged(double ) ) );
}
void PNGExportDia::disconnectAll()
{
- disconnect( widthEdit, TQT_SIGNAL( valueChanged(int) ),
- this, TQT_SLOT( widthChanged( int ) ) );
- disconnect( heightEdit, TQT_SIGNAL( valueChanged(int) ),
- this, TQT_SLOT( heightChanged( int ) ) );
- disconnect( percWidthEdit, TQT_SIGNAL( valueChanged(double) ),
- this, TQT_SLOT( percentWidthChanged( double ) ) );
- disconnect( percHeightEdit, TQT_SIGNAL( valueChanged(double) ),
- this, TQT_SLOT( percentHeightChanged(double ) ) );
+ disconnect( widthEdit, TQ_SIGNAL( valueChanged(int) ),
+ this, TQ_SLOT( widthChanged( int ) ) );
+ disconnect( heightEdit, TQ_SIGNAL( valueChanged(int) ),
+ this, TQ_SLOT( heightChanged( int ) ) );
+ disconnect( percWidthEdit, TQ_SIGNAL( valueChanged(double) ),
+ this, TQ_SLOT( percentWidthChanged( double ) ) );
+ disconnect( percHeightEdit, TQ_SIGNAL( valueChanged(double) ),
+ this, TQ_SLOT( percentHeightChanged(double ) ) );
}
void PNGExportDia::widthChanged( int width )
diff --git a/filters/kspread/csv/csvdialog.cpp b/filters/kspread/csv/csvdialog.cpp
index 1e721d16..ed65970d 100644
--- a/filters/kspread/csv/csvdialog.cpp
+++ b/filters/kspread/csv/csvdialog.cpp
@@ -90,24 +90,24 @@ CSVDialog::CSVDialog(TQWidget* parent, TQByteArray& fileArray, const TQString /*
m_dialog->m_sheet->setSelectionMode( TQTable::Multi );
- connect(m_dialog->m_formatComboBox, TQT_SIGNAL(activated( const TQString& )),
- this, TQT_SLOT(formatChanged( const TQString& )));
- connect(m_dialog->m_delimiterBox, TQT_SIGNAL(clicked(int)),
- this, TQT_SLOT(delimiterClicked(int)));
- connect(m_dialog->m_delimiterEdit, TQT_SIGNAL(returnPressed()),
- this, TQT_SLOT(returnPressed()));
- connect(m_dialog->m_delimiterEdit, TQT_SIGNAL(textChanged ( const TQString & )),
- this, TQT_SLOT(formatChanged ( const TQString & ) ));
- connect(m_dialog->m_comboQuote, TQT_SIGNAL(activated(const TQString &)),
- this, TQT_SLOT(textquoteSelected(const TQString &)));
- connect(m_dialog->m_sheet, TQT_SIGNAL(currentChanged(int, int)),
- this, TQT_SLOT(currentCellChanged(int, int)));
- connect(m_dialog->m_ignoreDuplicates, TQT_SIGNAL(stateChanged(int)),
- this, TQT_SLOT(ignoreDuplicatesChanged(int)));
- connect(m_dialog->m_updateButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(updateClicked()));
- connect(m_dialog->comboBoxEncoding, TQT_SIGNAL(textChanged ( const TQString & )),
- this, TQT_SLOT(encodingChanged ( const TQString & ) ));
+ connect(m_dialog->m_formatComboBox, TQ_SIGNAL(activated( const TQString& )),
+ this, TQ_SLOT(formatChanged( const TQString& )));
+ connect(m_dialog->m_delimiterBox, TQ_SIGNAL(clicked(int)),
+ this, TQ_SLOT(delimiterClicked(int)));
+ connect(m_dialog->m_delimiterEdit, TQ_SIGNAL(returnPressed()),
+ this, TQ_SLOT(returnPressed()));
+ connect(m_dialog->m_delimiterEdit, TQ_SIGNAL(textChanged ( const TQString & )),
+ this, TQ_SLOT(formatChanged ( const TQString & ) ));
+ connect(m_dialog->m_comboQuote, TQ_SIGNAL(activated(const TQString &)),
+ this, TQ_SLOT(textquoteSelected(const TQString &)));
+ connect(m_dialog->m_sheet, TQ_SIGNAL(currentChanged(int, int)),
+ this, TQ_SLOT(currentCellChanged(int, int)));
+ connect(m_dialog->m_ignoreDuplicates, TQ_SIGNAL(stateChanged(int)),
+ this, TQ_SLOT(ignoreDuplicatesChanged(int)));
+ connect(m_dialog->m_updateButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(updateClicked()));
+ connect(m_dialog->comboBoxEncoding, TQ_SIGNAL(textChanged ( const TQString & )),
+ this, TQ_SLOT(encodingChanged ( const TQString & ) ));
}
CSVDialog::~CSVDialog()
diff --git a/filters/kspread/csv/csvexportdialog.cpp b/filters/kspread/csv/csvexportdialog.cpp
index 3b95ef5d..10a692c9 100644
--- a/filters/kspread/csv/csvexportdialog.cpp
+++ b/filters/kspread/csv/csvexportdialog.cpp
@@ -79,16 +79,16 @@ CSVExportDialog::CSVExportDialog( TQWidget * parent )
m_delimiterValidator = new TQRegExpValidator( rx, m_dialog->m_delimiterBox );
m_dialog->m_delimiterEdit->setValidator( m_delimiterValidator );
- connect( m_dialog->m_delimiterBox, TQT_SIGNAL( clicked(int) ),
- this, TQT_SLOT( delimiterClicked( int ) ) );
- connect( m_dialog->m_delimiterEdit, TQT_SIGNAL( returnPressed() ),
- this, TQT_SLOT( returnPressed() ) );
- connect( m_dialog->m_delimiterEdit, TQT_SIGNAL( textChanged ( const TQString & ) ),
- this, TQT_SLOT(textChanged ( const TQString & ) ) );
- connect( m_dialog->m_comboQuote, TQT_SIGNAL( activated( const TQString & ) ),
- this, TQT_SLOT( textquoteSelected( const TQString & ) ) );
- connect( m_dialog->m_selectionOnly, TQT_SIGNAL( toggled( bool ) ),
- this, TQT_SLOT( selectionOnlyChanged( bool ) ) );
+ connect( m_dialog->m_delimiterBox, TQ_SIGNAL( clicked(int) ),
+ this, TQ_SLOT( delimiterClicked( int ) ) );
+ connect( m_dialog->m_delimiterEdit, TQ_SIGNAL( returnPressed() ),
+ this, TQ_SLOT( returnPressed() ) );
+ connect( m_dialog->m_delimiterEdit, TQ_SIGNAL( textChanged ( const TQString & ) ),
+ this, TQ_SLOT(textChanged ( const TQString & ) ) );
+ connect( m_dialog->m_comboQuote, TQ_SIGNAL( activated( const TQString & ) ),
+ this, TQ_SLOT( textquoteSelected( const TQString & ) ) );
+ connect( m_dialog->m_selectionOnly, TQ_SIGNAL( toggled( bool ) ),
+ this, TQ_SLOT( selectionOnlyChanged( bool ) ) );
loadSettings();
}
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() ) );
diff --git a/filters/kspread/kexi/kspread_kexiimportdialog.cpp b/filters/kspread/kexi/kspread_kexiimportdialog.cpp
index 0e15acbe..9f1fd475 100644
--- a/filters/kspread/kexi/kspread_kexiimportdialog.cpp
+++ b/filters/kspread/kexi/kspread_kexiimportdialog.cpp
@@ -61,8 +61,8 @@
KSpreadKexiImportDialog::KSpreadKexiImportDialog(TQWidget* parent, const char* name)
: KSpreadKexiImportDialogBase(parent,name)
{
- connect(this->m_insertButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(accept()));
- connect(this->m_cancelButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(reject()));
+ connect(this->m_insertButton,TQ_SIGNAL(clicked()),this,TQ_SLOT(accept()));
+ connect(this->m_cancelButton,TQ_SIGNAL(clicked()),this,TQ_SLOT(reject()));
}
/**
diff --git a/filters/kword/html/export/ExportDialog.cpp b/filters/kword/html/export/ExportDialog.cpp
index 5fc3fdc5..2da90934 100644
--- a/filters/kword/html/export/ExportDialog.cpp
+++ b/filters/kword/html/export/ExportDialog.cpp
@@ -54,10 +54,10 @@ HtmlExportDialog :: HtmlExportDialog(TQWidget* parent)
m_dialog->KURL_ExternalCSS->setMode( KFile::ExistingOnly );
- connect(m_dialog->radioModeEnhanced, TQT_SIGNAL( toggled( bool ) ),
- TQT_SLOT( setCSSEnabled( bool ) ) );
- connect(m_dialog->checkExternalCSS, TQT_SIGNAL( toggled( bool ) ),
- m_dialog->KURL_ExternalCSS, TQT_SLOT( setEnabled( bool ) ) );
+ connect(m_dialog->radioModeEnhanced, TQ_SIGNAL( toggled( bool ) ),
+ TQ_SLOT( setCSSEnabled( bool ) ) );
+ connect(m_dialog->checkExternalCSS, TQ_SIGNAL( toggled( bool ) ),
+ m_dialog->KURL_ExternalCSS, TQ_SLOT( setEnabled( bool ) ) );
setMainWidget(m_dialog);
}
diff --git a/filters/kword/html/import/tdehtmlreader.cpp b/filters/kword/html/import/tdehtmlreader.cpp
index e800820a..523bd672 100644
--- a/filters/kword/html/import/tdehtmlreader.cpp
+++ b/filters/kword/html/import/tdehtmlreader.cpp
@@ -47,7 +47,7 @@ void tqt_leave_modal( TQWidget *widget );
bool TDEHTMLReader::filter(KURL url)
{
kdDebug(30503) << "TDEHTMLReader::filter" << endl;
- TQObject::connect(_html,TQT_SIGNAL(completed()),this,TQT_SLOT(completed()));
+ TQObject::connect(_html,TQ_SIGNAL(completed()),this,TQ_SLOT(completed()));
_state.clear();
_list_depth=0;
diff --git a/filters/kword/msword/document.cpp b/filters/kword/msword/document.cpp
index 2e20b999..7cd82e1b 100644
--- a/filters/kword/msword/document.cpp
+++ b/filters/kword/msword/document.cpp
@@ -52,12 +52,12 @@ Document::Document( const std::string& fileName, TQDomDocument& mainDocument, TQ
if ( m_parser ) // 0 in case of major error (e.g. unsupported format)
{
m_textHandler = new KWordTextHandler( m_parser );
- connect( m_textHandler, TQT_SIGNAL( subDocFound( const wvWare::FunctorBase*, int ) ),
- this, TQT_SLOT( slotSubDocFound( const wvWare::FunctorBase*, int ) ) );
- connect( m_textHandler, TQT_SIGNAL( tableFound( const KWord::Table& ) ),
- this, TQT_SLOT( slotTableFound( const KWord::Table& ) ) );
- connect( m_textHandler, TQT_SIGNAL( pictureFound( const TQString&, const TQString&, const wvWare::FunctorBase* ) ),
- this, TQT_SLOT( slotPictureFound( const TQString&, const TQString&, const wvWare::FunctorBase* ) ) );
+ connect( m_textHandler, TQ_SIGNAL( subDocFound( const wvWare::FunctorBase*, int ) ),
+ this, TQ_SLOT( slotSubDocFound( const wvWare::FunctorBase*, int ) ) );
+ connect( m_textHandler, TQ_SIGNAL( tableFound( const KWord::Table& ) ),
+ this, TQ_SLOT( slotTableFound( const KWord::Table& ) ) );
+ connect( m_textHandler, TQ_SIGNAL( pictureFound( const TQString&, const TQString&, const wvWare::FunctorBase* ) ),
+ this, TQ_SLOT( slotPictureFound( const TQString&, const TQString&, const wvWare::FunctorBase* ) ) );
m_parser->setSubDocumentHandler( this );
m_parser->setTextHandler( m_textHandler );
m_parser->setTableHandler( m_tableHandler );
@@ -67,10 +67,10 @@ Document::Document( const std::string& fileName, TQDomDocument& mainDocument, TQ
m_parser->setInlineReplacementHandler( m_replacementHandler );
processStyles();
processAssociatedStrings();
- connect( m_tableHandler, TQT_SIGNAL( sigTableCellStart( int, int, int, int, const KoRect&, const TQString&, const wvWare::Word97::BRC&, const wvWare::Word97::BRC&, const wvWare::Word97::BRC&, const wvWare::Word97::BRC&, const wvWare::Word97::SHD& ) ),
- this, TQT_SLOT( slotTableCellStart( int, int, int, int, const KoRect&, const TQString&, const wvWare::Word97::BRC&, const wvWare::Word97::BRC&, const wvWare::Word97::BRC&, const wvWare::Word97::BRC&, const wvWare::Word97::SHD& ) ) );
- connect( m_tableHandler, TQT_SIGNAL( sigTableCellEnd() ),
- this, TQT_SLOT( slotTableCellEnd() ) );
+ connect( m_tableHandler, TQ_SIGNAL( sigTableCellStart( int, int, int, int, const KoRect&, const TQString&, const wvWare::Word97::BRC&, const wvWare::Word97::BRC&, const wvWare::Word97::BRC&, const wvWare::Word97::BRC&, const wvWare::Word97::SHD& ) ),
+ this, TQ_SLOT( slotTableCellStart( int, int, int, int, const KoRect&, const TQString&, const wvWare::Word97::BRC&, const wvWare::Word97::BRC&, const wvWare::Word97::BRC&, const wvWare::Word97::BRC&, const wvWare::Word97::SHD& ) ) );
+ connect( m_tableHandler, TQ_SIGNAL( sigTableCellEnd() ),
+ this, TQ_SLOT( slotTableCellEnd() ) );
}
}
@@ -236,16 +236,16 @@ void Document::bodyStart()
createInitialFrame( mainFramesetElement, 29, 798, 42, 566, false, Reconnect );
m_textHandler->setFrameSetElement( mainFramesetElement );
- connect( m_textHandler, TQT_SIGNAL( firstSectionFound( wvWare::SharedPtr<const wvWare::Word97::SEP> ) ),
- this, TQT_SLOT( slotFirstSectionFound( wvWare::SharedPtr<const wvWare::Word97::SEP> ) ) );
+ connect( m_textHandler, TQ_SIGNAL( firstSectionFound( wvWare::SharedPtr<const wvWare::Word97::SEP> ) ),
+ this, TQ_SLOT( slotFirstSectionFound( wvWare::SharedPtr<const wvWare::Word97::SEP> ) ) );
m_bodyFound = true;
}
void Document::bodyEnd()
{
kdDebug(30513) << k_funcinfo << endl;
- disconnect( m_textHandler, TQT_SIGNAL( firstSectionFound( wvWare::SharedPtr<const wvWare::Word97::SEP> ) ),
- this, TQT_SLOT( slotFirstSectionFound( wvWare::SharedPtr<const wvWare::Word97::SEP> ) ) );
+ disconnect( m_textHandler, TQ_SIGNAL( firstSectionFound( wvWare::SharedPtr<const wvWare::Word97::SEP> ) ),
+ this, TQ_SLOT( slotFirstSectionFound( wvWare::SharedPtr<const wvWare::Word97::SEP> ) ) );
}
diff --git a/filters/kword/mswrite/ImportDialog.cpp b/filters/kword/mswrite/ImportDialog.cpp
index cb983491..f5ca040f 100644
--- a/filters/kword/mswrite/ImportDialog.cpp
+++ b/filters/kword/mswrite/ImportDialog.cpp
@@ -48,8 +48,8 @@ MSWriteImportDialog :: MSWriteImportDialog(TQWidget* parent)
setMainWidget(m_dialog);
- connect(m_dialog->comboBoxEncoding, TQT_SIGNAL(activated(int)), this,
- TQT_SLOT(comboBoxEncodingActivated(int)));
+ connect(m_dialog->comboBoxEncoding, TQ_SIGNAL(activated(int)), this,
+ TQ_SLOT(comboBoxEncodingActivated(int)));
}
MSWriteImportDialog :: ~MSWriteImportDialog(void)
diff --git a/filters/kword/pdf/dialog.cpp b/filters/kword/pdf/dialog.cpp
index 03254939..2020baea 100644
--- a/filters/kword/pdf/dialog.cpp
+++ b/filters/kword/pdf/dialog.cpp
@@ -136,8 +136,8 @@ Dialog::Dialog(uint nbPages, bool isEncrypted, TQWidget *widget)
_group->insert(_rangeButton);
_range = new KLineEdit(hbox);
_range->setFocus();
- connect(_range, TQT_SIGNAL(textChanged(const TQString &)),
- TQT_SLOT(rangeChanged(const TQString &)));
+ connect(_range, TQ_SIGNAL(textChanged(const TQString &)),
+ TQ_SLOT(rangeChanged(const TQString &)));
// options
_images = new TQCheckBox(i18n("Import images"), plainPage());
diff --git a/filters/libdialogfilter/exportsizedia.cpp b/filters/libdialogfilter/exportsizedia.cpp
index a4a15217..6c455e04 100644
--- a/filters/libdialogfilter/exportsizedia.cpp
+++ b/filters/libdialogfilter/exportsizedia.cpp
@@ -53,8 +53,8 @@ ExportSizeDia::ExportSizeDia( int width, int height,
m_percHeightEdit->setValue( 100 );
connectAll();
- connect( m_proportional, TQT_SIGNAL( clicked() ),
- this, TQT_SLOT( proportionalClicked() ) );
+ connect( m_proportional, TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( proportionalClicked() ) );
}
@@ -221,27 +221,27 @@ void ExportSizeDia::proportionalClicked()
void ExportSizeDia::connectAll()
{
- connect( m_widthEdit, TQT_SIGNAL( valueChanged(int) ),
- this, TQT_SLOT( widthChanged( int ) ) );
- connect( m_heightEdit, TQT_SIGNAL( valueChanged(int) ),
- this, TQT_SLOT( heightChanged( int ) ) );
- connect( m_percWidthEdit, TQT_SIGNAL( valueChanged(double) ),
- this, TQT_SLOT( percentWidthChanged( double ) ) );
- connect( m_percHeightEdit, TQT_SIGNAL( valueChanged(double) ),
- this, TQT_SLOT( percentHeightChanged(double ) ) );
+ connect( m_widthEdit, TQ_SIGNAL( valueChanged(int) ),
+ this, TQ_SLOT( widthChanged( int ) ) );
+ connect( m_heightEdit, TQ_SIGNAL( valueChanged(int) ),
+ this, TQ_SLOT( heightChanged( int ) ) );
+ connect( m_percWidthEdit, TQ_SIGNAL( valueChanged(double) ),
+ this, TQ_SLOT( percentWidthChanged( double ) ) );
+ connect( m_percHeightEdit, TQ_SIGNAL( valueChanged(double) ),
+ this, TQ_SLOT( percentHeightChanged(double ) ) );
}
void ExportSizeDia::disconnectAll()
{
- disconnect( m_widthEdit, TQT_SIGNAL( valueChanged(int) ),
- this, TQT_SLOT( widthChanged( int ) ) );
- disconnect( m_heightEdit, TQT_SIGNAL( valueChanged(int) ),
- this, TQT_SLOT( heightChanged( int ) ) );
- disconnect( m_percWidthEdit, TQT_SIGNAL( valueChanged(double) ),
- this, TQT_SLOT( percentWidthChanged( double ) ) );
- disconnect( m_percHeightEdit, TQT_SIGNAL( valueChanged(double) ),
- this, TQT_SLOT( percentHeightChanged(double ) ) );
+ disconnect( m_widthEdit, TQ_SIGNAL( valueChanged(int) ),
+ this, TQ_SLOT( widthChanged( int ) ) );
+ disconnect( m_heightEdit, TQ_SIGNAL( valueChanged(int) ),
+ this, TQ_SLOT( heightChanged( int ) ) );
+ disconnect( m_percWidthEdit, TQ_SIGNAL( valueChanged(double) ),
+ this, TQ_SLOT( percentWidthChanged( double ) ) );
+ disconnect( m_percHeightEdit, TQ_SIGNAL( valueChanged(double) ),
+ this, TQ_SLOT( percentHeightChanged(double ) ) );
}
diff --git a/filters/olefilters/olefilter.cpp b/filters/olefilters/olefilter.cpp
index ae0395a9..67511bc1 100644
--- a/filters/olefilters/olefilter.cpp
+++ b/filters/olefilters/olefilter.cpp
@@ -370,8 +370,8 @@ void OLEFilter::convert( const TQCString& mimeTypeHint )
myFilter=new WordFilter(main, table0, table1, data);
// forward the internal communication calls
- connect( this, TQT_SIGNAL( internalCommShapeID( unsigned int& ) ), myFilter, TQT_SIGNAL( internalCommShapeID( unsigned int& ) ) );
- connect( this, TQT_SIGNAL( internalCommDelayStream( const char* ) ), myFilter, TQT_SIGNAL( internalCommDelayStream( const char* ) ) );
+ connect( this, TQ_SIGNAL( internalCommShapeID( unsigned int& ) ), myFilter, TQ_SIGNAL( internalCommShapeID( unsigned int& ) ) );
+ connect( this, TQ_SIGNAL( internalCommDelayStream( const char* ) ), myFilter, TQ_SIGNAL( internalCommDelayStream( const char* ) ) );
}
}
else if ( mimeType == "application/x-kspread" ) {
@@ -477,27 +477,27 @@ void OLEFilter::convert( const TQCString& mimeTypeHint )
void OLEFilter::connectCommon(FilterBase **myFilter) {
TQObject::connect(
*myFilter,
- TQT_SIGNAL(signalSaveDocumentInformation(const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &)),
+ TQ_SIGNAL(signalSaveDocumentInformation(const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &)),
this,
- TQT_SLOT(slotSaveDocumentInformation(const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &)));
+ TQ_SLOT(slotSaveDocumentInformation(const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &, const TQString &)));
TQObject::connect(
*myFilter,
- TQT_SIGNAL(signalSavePic(const TQString &, TQString &, const TQString &, unsigned int, const char *)),
+ TQ_SIGNAL(signalSavePic(const TQString &, TQString &, const TQString &, unsigned int, const char *)),
this,
- TQT_SLOT(slotSavePic(const TQString &, TQString &, const TQString &, unsigned int, const char *)));
+ TQ_SLOT(slotSavePic(const TQString &, TQString &, const TQString &, unsigned int, const char *)));
TQObject::connect(
*myFilter,
- TQT_SIGNAL(signalSavePart(const TQString &, TQString &, TQString &, const TQString &, unsigned int, const char *)),
+ TQ_SIGNAL(signalSavePart(const TQString &, TQString &, TQString &, const TQString &, unsigned int, const char *)),
this,
- TQT_SLOT(slotSavePart(const TQString &, TQString &, TQString &, const TQString &, unsigned int, const char *)));
- TQObject::connect(*myFilter, TQT_SIGNAL(signalPart(const TQString&, TQString &, TQString &)),
- this, TQT_SLOT(slotPart(const TQString&, TQString &, TQString &)));
- TQObject::connect(*myFilter, TQT_SIGNAL(signalGetStream(const int &, myFile &)), this,
- TQT_SLOT(slotGetStream(const int &, myFile &)));
- TQObject::connect(*myFilter, TQT_SIGNAL(signalGetStream(const TQString &, myFile &)), this,
- TQT_SLOT(slotGetStream(const TQString &, myFile &)));
- TQObject::connect(*myFilter, TQT_SIGNAL(sigProgress(int)), this, TQT_SIGNAL(sigProgress(int)));
+ TQ_SLOT(slotSavePart(const TQString &, TQString &, TQString &, const TQString &, unsigned int, const char *)));
+ TQObject::connect(*myFilter, TQ_SIGNAL(signalPart(const TQString&, TQString &, TQString &)),
+ this, TQ_SLOT(slotPart(const TQString&, TQString &, TQString &)));
+ TQObject::connect(*myFilter, TQ_SIGNAL(signalGetStream(const int &, myFile &)), this,
+ TQ_SLOT(slotGetStream(const int &, myFile &)));
+ TQObject::connect(*myFilter, TQ_SIGNAL(signalGetStream(const TQString &, myFile &)), this,
+ TQ_SLOT(slotGetStream(const TQString &, myFile &)));
+ TQObject::connect(*myFilter, TQ_SIGNAL(sigProgress(int)), this, TQ_SIGNAL(sigProgress(int)));
}
TQCString OLEFilter::mimeTypeHelper()
diff --git a/filters/olefilters/powerpoint97/powerpointfilter.cpp b/filters/olefilters/powerpoint97/powerpointfilter.cpp
index 5359dd98..c0ce4b3e 100644
--- a/filters/olefilters/powerpoint97/powerpointfilter.cpp
+++ b/filters/olefilters/powerpoint97/powerpointfilter.cpp
@@ -32,25 +32,25 @@ PowerPointFilter::PowerPointFilter(
connect(
m_tree,
- TQT_SIGNAL(signalPart(const TQString&, TQString &, TQString &)),
+ TQ_SIGNAL(signalPart(const TQString&, TQString &, TQString &)),
this,
- TQT_SIGNAL(signalPart(const TQString&, TQString &, TQString &)));
+ TQ_SIGNAL(signalPart(const TQString&, TQString &, TQString &)));
// Hook up the embedded picture support.
connect(
m_tree,
- TQT_SIGNAL(signalSavePic(const TQString &, TQString &, const TQString &, unsigned int, const char *)),
+ TQ_SIGNAL(signalSavePic(const TQString &, TQString &, const TQString &, unsigned int, const char *)),
this,
- TQT_SIGNAL(signalSavePic(const TQString &, TQString &, const TQString &, unsigned int, const char *)));
+ TQ_SIGNAL(signalSavePic(const TQString &, TQString &, const TQString &, unsigned int, const char *)));
// Hook up the embedded part support.
connect(
m_tree,
- TQT_SIGNAL(signalSavePart(const TQString &, TQString &, TQString &, const TQString &, unsigned int, const char *)),
+ TQ_SIGNAL(signalSavePart(const TQString &, TQString &, TQString &, const TQString &, unsigned int, const char *)),
this,
- TQT_SIGNAL(signalSavePart(const TQString &, TQString &, TQString &, const TQString &, unsigned int, const char *)));
+ TQ_SIGNAL(signalSavePart(const TQString &, TQString &, TQString &, const TQString &, unsigned int, const char *)));
}
PowerPointFilter::~PowerPointFilter()