diff options
Diffstat (limited to 'libkcal/tests/testvcalexport.cpp')
-rw-r--r-- | libkcal/tests/testvcalexport.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libkcal/tests/testvcalexport.cpp b/libkcal/tests/testvcalexport.cpp index a6ca1cfdd..7f8b61c09 100644 --- a/libkcal/tests/testvcalexport.cpp +++ b/libkcal/tests/testvcalexport.cpp @@ -35,8 +35,8 @@ extern "C" { #include <klocale.h> #include <kcmdlineargs.h> -#include <qfile.h> -#include <qfileinfo.h> +#include <tqfile.h> +#include <tqfileinfo.h> using namespace KCal; @@ -65,20 +65,20 @@ int main( int argc, char **argv ) // use zoneinfo data from source dir set_zone_directory( KDETOPSRCDIR "/libkcal/libical/zoneinfo" ); - QString input = QFile::decodeName( args->arg( 0 ) ); - QString output = QFile::decodeName( args->arg( 1 ) ); + TQString input = TQFile::decodeName( args->arg( 0 ) ); + TQString output = TQFile::decodeName( args->arg( 1 ) ); - QFileInfo outputFileInfo( output ); + TQFileInfo outputFileInfo( output ); output = outputFileInfo.absFilePath(); kdDebug(5800) << "Input file: " << input << endl; kdDebug(5800) << "Output file: " << output << endl; - CalendarLocal cal( QString::fromLatin1("UTC") ); + CalendarLocal cal( TQString::fromLatin1("UTC") ); if ( !cal.load( input ) ) return 1; - QString tz = cal.nonKDECustomProperty( "X-LibKCal-Testsuite-OutTZ" ); + TQString tz = cal.nonKDECustomProperty( "X-LibKCal-Testsuite-OutTZ" ); if ( !tz.isEmpty() ) { cal.setTimeZoneIdViewOnly( tz ); } |