diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-15 01:44:26 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-15 01:44:26 +0000 |
commit | 2d0cd394291d27533313adaf3dfdcd2eb92f61da (patch) | |
tree | f54a0d39f384783af4982dc9b153d1ab563261e3 /libkcal | |
parent | 1c93fca14d9ce37499bcfdf994c660186a0b6f17 (diff) | |
download | tdepim-2d0cd394291d27533313adaf3dfdcd2eb92f61da.tar.gz tdepim-2d0cd394291d27533313adaf3dfdcd2eb92f61da.zip |
Fix Qt3 compilation of kdepim
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227976 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcal')
-rw-r--r-- | libkcal/icalformatimpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libkcal/icalformatimpl.cpp b/libkcal/icalformatimpl.cpp index f53ec1e1..bf57e88c 100644 --- a/libkcal/icalformatimpl.cpp +++ b/libkcal/icalformatimpl.cpp @@ -1133,11 +1133,11 @@ FreeBusy *ICalFormatImpl::readFreeBusy(icalcomponent *vfreebusy) while ( param ) { if ( strncmp( icalparameter_get_xname( param ), "X-SUMMARY", 9 ) == 0 ) { period.setSummary( TQString::fromUtf8( - KCodecs::base64Decode( TQByteArray( icalparameter_get_xvalue( param ) ) ) ) ); + KCodecs::base64Decode( TQCString( icalparameter_get_xvalue( param ) ) ) ) ); } if ( strncmp( icalparameter_get_xname( param ), "X-LOCATION", 10 ) == 0 ) { period.setLocation( TQString::fromUtf8( - KCodecs::base64Decode( TQByteArray( icalparameter_get_xvalue( param ) ) ) ) ); + KCodecs::base64Decode( TQCString( icalparameter_get_xvalue( param ) ) ) ) ); } param = icalproperty_get_next_parameter( p, ICAL_X_PARAMETER ); } |