diff options
Diffstat (limited to 'kresources/kolab/shared/resourcekolabbase.cpp')
-rw-r--r-- | kresources/kolab/shared/resourcekolabbase.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kresources/kolab/shared/resourcekolabbase.cpp b/kresources/kolab/shared/resourcekolabbase.cpp index 2db2117db..26ef00db6 100644 --- a/kresources/kolab/shared/resourcekolabbase.cpp +++ b/kresources/kolab/shared/resourcekolabbase.cpp @@ -83,7 +83,7 @@ bool ResourceKolabBase::kmailIncidencesCount( int &count, return mConnection->kmailIncidencesCount( count, mimetype, resource ); } -bool ResourceKolabBase::kmailIncidences( TQMap<Q_UINT32, TQString>& lst, +bool ResourceKolabBase::kmailIncidences( TQMap<TQ_UINT32, TQString>& lst, const TQString& mimetype, const TQString& resource, int startIndex, @@ -93,27 +93,27 @@ bool ResourceKolabBase::kmailIncidences( TQMap<Q_UINT32, TQString>& lst, } bool ResourceKolabBase::kmailGetAttachment( KURL& url, const TQString& resource, - Q_UINT32 sernum, + TQ_UINT32 sernum, const TQString& filename ) const { return mConnection->kmailGetAttachment( url, resource, sernum, filename ); } bool ResourceKolabBase::kmailAttachmentMimetype( TQString & mimeType, TQString & resource, - Q_UINT32 sernum, const TQString & filename ) const + TQ_UINT32 sernum, const TQString & filename ) const { return mConnection->kmailAttachmentMimetype( mimeType, resource, sernum, filename ); } bool ResourceKolabBase::kmailListAttachments( TQStringList &list, const TQString & resource, - Q_UINT32 sernum ) const + TQ_UINT32 sernum ) const { return mConnection->kmailListAttachments( list, resource, sernum ); } bool ResourceKolabBase::kmailDeleteIncidence( const TQString& resource, - Q_UINT32 sernum ) + TQ_UINT32 sernum ) { return mSilent || mConnection->kmailDeleteIncidence( resource, sernum ); } @@ -126,7 +126,7 @@ static TQString plainTextBody() " Groupware format.\nFor a list of such email clients please" " visit\n%1" ); const char * url = "http://www.kolab.org/kolab2-clients.html"; - TQString firstPartTextUntranslated = TQString::fromLatin1( firstPartTextToTranslate ).arg( url ); + TQString firstPartTextUntranslated = TQString::tqfromLatin1( firstPartTextToTranslate ).arg( url ); TQString firstPartText = i18n( firstPartTextToTranslate ).arg( url ); if ( firstPartText != firstPartTextUntranslated ) { firstPartText.append("\n\n-----------------------------------------------------\n\n"); @@ -136,7 +136,7 @@ static TQString plainTextBody() } bool ResourceKolabBase::kmailUpdate( const TQString& resource, - Q_UINT32& sernum, + TQ_UINT32& sernum, const TQString& xml, const TQString& mimetype, const TQString& subject, |