summaryrefslogtreecommitdiffstats
path: root/kontact/plugins/korganizer/korganizerplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kontact/plugins/korganizer/korganizerplugin.cpp')
-rw-r--r--kontact/plugins/korganizer/korganizerplugin.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kontact/plugins/korganizer/korganizerplugin.cpp b/kontact/plugins/korganizer/korganizerplugin.cpp
index 2a712c8c..d626c951 100644
--- a/kontact/plugins/korganizer/korganizerplugin.cpp
+++ b/kontact/plugins/korganizer/korganizerplugin.cpp
@@ -57,7 +57,7 @@ K_EXPORT_COMPONENT_FACTORY( libkontact_korganizerplugin,
KOrganizerPluginFactory( "kontact_korganizerplugin" ) )
KOrganizerPlugin::KOrganizerPlugin( Kontact::Core *core, const char *, const TQStringList& )
- : Kontact::Plugin( core, core, "korganizer" ),
+ : Kontact::Plugin( core, TQT_TQOBJECT(core), "korganizer" ),
mIface( 0 )
{
@@ -195,7 +195,7 @@ void KOrganizerPlugin::processDropEvent( TQDropEvent *event )
KCal::Incidence *i = incidences.first();
TQString summary;
if ( dynamic_cast<KCal::Journal*>( i ) )
- summary = i18n( "Note: %1" ).arg( i->summary() );
+ summary = i18n( "Note: %1" ).tqarg( i->summary() );
else
summary = i->summary();
interface()->openEventEditor( summary, i->description(), TQString() );
@@ -219,22 +219,22 @@ void KOrganizerPlugin::processDropEvent( TQDropEvent *event )
i18n("Drops of multiple mails are not supported." ) );
} else {
KPIM::MailSummary mail = mails.first();
- TQString txt = i18n("From: %1\nTo: %2\nSubject: %3").arg( mail.from() )
- .arg( mail.to() ).arg( mail.subject() );
+ TQString txt = i18n("From: %1\nTo: %2\nSubject: %3").tqarg( mail.from() )
+ .tqarg( mail.to() ).tqarg( mail.subject() );
KTempFile tf;
tf.setAutoDelete( true );
TQString uri = TQString::tqfromLatin1("kmail:") + TQString::number( mail.serialNumber() );
tf.file()->writeBlock( event->tqencodedData( "message/rfc822" ) );
tf.close();
- interface()->openEventEditor( i18n("Mail: %1").arg( mail.subject() ), txt,
+ interface()->openEventEditor( i18n("Mail: %1").tqarg( mail.subject() ), txt,
uri, tf.name(), TQStringList(), "message/rfc822" );
}
return;
}
KMessageBox::sorry( core(), i18n("Cannot handle drop events of type '%1'.")
- .arg( event->format() ) );
+ .tqarg( event->format() ) );
}
bool KOrganizerPlugin::queryClose() const {