summaryrefslogtreecommitdiffstats
path: root/kmail/kmfilteraction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/kmfilteraction.cpp')
-rw-r--r--kmail/kmfilteraction.cpp50
1 files changed, 25 insertions, 25 deletions
diff --git a/kmail/kmfilteraction.cpp b/kmail/kmfilteraction.cpp
index c23a5644..5c45528e 100644
--- a/kmail/kmfilteraction.cpp
+++ b/kmail/kmfilteraction.cpp
@@ -185,7 +185,7 @@ const TQString KMFilterActionWithUOID::argsAsString() const
const TQString KMFilterActionWithUOID::displayString() const
{
// FIXME after string freeze:
- // return i18n("").arg( );
+ // return i18n("").tqarg( );
return label() + " \"" + TQStyleSheet::escape( argsAsString() ) + "\"";
}
@@ -236,7 +236,7 @@ const TQString KMFilterActionWithString::argsAsString() const
const TQString KMFilterActionWithString::displayString() const
{
// FIXME after string freeze:
- // return i18n("").arg( );
+ // return i18n("").tqarg( );
return label() + " \"" + TQStyleSheet::escape( argsAsString() ) + "\"";
}
@@ -266,7 +266,7 @@ void KMFilterActionWithStringList::applyParamWidgetValue( TQWidget* paramWidget
void KMFilterActionWithStringList::setParamWidgetValue( TQWidget* paramWidget ) const
{
- int idx = mParameterList.findIndex( mParameter );
+ int idx = mParameterList.tqfindIndex( mParameter );
((TQComboBox*)paramWidget)->setCurrentItem( idx >= 0 ? idx : 0 );
}
@@ -277,7 +277,7 @@ void KMFilterActionWithStringList::clearParamWidget( TQWidget* paramWidget ) con
void KMFilterActionWithStringList::argsFromString( const TQString argsStr )
{
- int idx = mParameterList.findIndex( argsStr );
+ int idx = mParameterList.tqfindIndex( argsStr );
if ( idx < 0 ) {
mParameterList.append( argsStr );
idx = mParameterList.count() - 1;
@@ -483,11 +483,11 @@ TQString KMFilterActionWithCommand::substituteCommandLineArgsFor( KMMessage *aMs
}
tf->close();
}
- // TQString( "%0 and %1 and %1" ).arg( 0 ).arg( 1 )
+ // TQString( "%0 and %1 and %1" ).tqarg( 0 ).tqarg( 1 )
// returns "0 and 1 and %1", so we must call .arg as
// many times as there are %n's, regardless of their multiplicity.
if ((*it) == -1) result.tqreplace( "%-1", tempFileName );
- else result = result.arg( tempFileName );
+ else result = result.tqarg( tempFileName );
}
// And finally, replace the %{foo} with the content of the foo
@@ -495,7 +495,7 @@ TQString KMFilterActionWithCommand::substituteCommandLineArgsFor( KMMessage *aMs
TQRegExp header_rx( "%\\{([a-z0-9-]+)\\}", false );
int idx = 0;
while ( ( idx = header_rx.search( result, idx ) ) != -1 ) {
- TQString replacement = KProcess::quote( aMsg->headerField( header_rx.cap(1).latin1() ) );
+ TQString replacement = KProcess::quote( aMsg->headerField( TQString(header_rx.cap(1)).latin1() ) );
result.tqreplace( idx, header_rx.matchedLength(), replacement );
idx += replacement.length();
}
@@ -806,7 +806,7 @@ KMFilterActionSetqStatus::KMFilterActionSetqStatus()
KMFilterAction::ReturnCode KMFilterActionSetqStatus::process(KMMessage* msg) const
{
- int idx = mParameterList.findIndex( mParameter );
+ int idx = mParameterList.tqfindIndex( mParameter );
if ( idx < 1 ) return ErrorButGoOn;
KMMsgtqStatus status = stati[idx-1] ;
@@ -833,7 +833,7 @@ void KMFilterActionSetqStatus::argsFromString( const TQString argsStr )
const TQString KMFilterActionSetqStatus::argsAsString() const
{
- int idx = mParameterList.findIndex( mParameter );
+ int idx = mParameterList.tqfindIndex( mParameter );
if ( idx < 1 ) return TQString();
KMMsgtqStatus status = stati[idx-1];
@@ -843,7 +843,7 @@ const TQString KMFilterActionSetqStatus::argsAsString() const
const TQString KMFilterActionSetqStatus::displayString() const
{
// FIXME after string freeze:
- // return i18n("").arg( );
+ // return i18n("").tqarg( );
return label() + " \"" + TQStyleSheet::escape( argsAsString() ) + "\"";
}
@@ -901,7 +901,7 @@ KMFilterActionFakeDisposition::KMFilterActionFakeDisposition()
KMFilterAction::ReturnCode KMFilterActionFakeDisposition::process(KMMessage* msg) const
{
- int idx = mParameterList.findIndex( mParameter );
+ int idx = mParameterList.tqfindIndex( mParameter );
if ( idx < 1 ) return ErrorButGoOn;
if ( idx == 1 ) // ignore
@@ -929,7 +929,7 @@ void KMFilterActionFakeDisposition::argsFromString( const TQString argsStr )
const TQString KMFilterActionFakeDisposition::argsAsString() const
{
- int idx = mParameterList.findIndex( mParameter );
+ int idx = mParameterList.tqfindIndex( mParameter );
if ( idx < 1 ) return TQString();
return TQString( TQChar( idx < 2 ? 'I' : char(mdns[idx-2]) ) );
@@ -938,7 +938,7 @@ const TQString KMFilterActionFakeDisposition::argsAsString() const
const TQString KMFilterActionFakeDisposition::displayString() const
{
// FIXME after string freeze:
- // return i18n("").arg( );
+ // return i18n("").tqarg( );
return label() + " \"" + TQStyleSheet::escape( argsAsString() ) + "\"";
}
@@ -996,7 +996,7 @@ void KMFilterActionRemoveHeader::setParamWidgetValue( TQWidget* paramWidget ) co
TQComboBox * cb = dynamic_cast<TQComboBox*>(paramWidget);
Q_ASSERT( cb );
- int idx = mParameterList.findIndex( mParameter );
+ int idx = mParameterList.tqfindIndex( mParameter );
cb->clear();
cb->insertStringList( mParameterList );
if ( idx < 0 ) {
@@ -1074,7 +1074,7 @@ TQWidget* KMFilterActionAddHeader::createParamWidget( TQWidget* tqparent ) const
void KMFilterActionAddHeader::setParamWidgetValue( TQWidget* paramWidget ) const
{
- int idx = mParameterList.findIndex( mParameter );
+ int idx = mParameterList.tqfindIndex( mParameter );
TQComboBox *cb = (TQComboBox*)paramWidget->child("combo");
Q_ASSERT( cb );
cb->clear();
@@ -1123,7 +1123,7 @@ const TQString KMFilterActionAddHeader::argsAsString() const
const TQString KMFilterActionAddHeader::displayString() const
{
// FIXME after string freeze:
- // return i18n("").arg( );
+ // return i18n("").tqarg( );
return label() + " \"" + TQStyleSheet::escape( argsAsString() ) + "\"";
}
@@ -1139,7 +1139,7 @@ void KMFilterActionAddHeader::argsFromString( const TQString argsStr )
mValue = l[1];
}
- int idx = mParameterList.findIndex( s );
+ int idx = mParameterList.tqfindIndex( s );
if ( idx < 0 ) {
mParameterList.append( s );
idx = mParameterList.count() - 1;
@@ -1233,7 +1233,7 @@ TQWidget* KMFilterActionRewriteHeader::createParamWidget( TQWidget* tqparent ) c
void KMFilterActionRewriteHeader::setParamWidgetValue( TQWidget* paramWidget ) const
{
- int idx = mParameterList.findIndex( mParameter );
+ int idx = mParameterList.tqfindIndex( mParameter );
TQComboBox *cb = (TQComboBox*)paramWidget->child("combo");
Q_ASSERT( cb );
@@ -1299,7 +1299,7 @@ const TQString KMFilterActionRewriteHeader::argsAsString() const
const TQString KMFilterActionRewriteHeader::displayString() const
{
// FIXME after string freeze:
- // return i18n("").arg( );
+ // return i18n("").tqarg( );
return label() + " \"" + TQStyleSheet::escape( argsAsString() ) + "\"";
}
@@ -1312,7 +1312,7 @@ void KMFilterActionRewriteHeader::argsFromString( const TQString argsStr )
mRegExp.setPattern( l[1] );
mReplacementString = l[2];
- int idx = mParameterList.findIndex( s );
+ int idx = mParameterList.tqfindIndex( s );
if ( idx < 0 ) {
mParameterList.append( s );
idx = mParameterList.count() - 1;
@@ -1617,9 +1617,9 @@ const TQString KMFilterActionForward::argsAsString() const
const TQString KMFilterActionForward::displayString() const
{
if ( mTemplate.isEmpty() )
- return i18n( "Forward to %1 with default template " ).arg( mParameter );
+ return i18n( "Forward to %1 with default template " ).tqarg( mParameter );
else
- return i18n( "Forward to %1 with template %2" ).arg( mParameter, mTemplate );
+ return i18n( "Forward to %1 with template %2" ).tqarg( mParameter, mTemplate );
}
//=============================================================================
@@ -1732,7 +1732,7 @@ class PipeJob : public KPIM::ThreadWeaver::Job
if (! fgets( buffer, len, p ) ) break;
int oldsize = ba.size();
ba.resize( oldsize + strlen(buffer) );
- qmemmove( ba.begin() + oldsize, buffer, strlen(buffer) );
+ tqmemmove( ba.begin() + oldsize, buffer, strlen(buffer) );
}
pclose(p);
if ( !ba.isEmpty() ) {
@@ -1878,7 +1878,7 @@ const TQString KMFilterActionWithTest::argsAsString() const
const TQString KMFilterActionWithTest::displayString() const
{
// FIXME after string freeze:
- // return i18n("").arg( );
+ // return i18n("").tqarg( );
return label() + " \"" + TQStyleSheet::escape( argsAsString() ) + "\"";
}
@@ -1955,7 +1955,7 @@ const TQString KMFilterActionWithUrl::argsAsString() const
const TQString KMFilterActionWithUrl::displayString() const
{
// FIXME after string freeze:
- // return i18n("").arg( );
+ // return i18n("").tqarg( );
return label() + " \"" + TQStyleSheet::escape( argsAsString() ) + "\"";
}