diff options
Diffstat (limited to 'libktorrent/migrate/migrate.cpp')
-rw-r--r-- | libktorrent/migrate/migrate.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libktorrent/migrate/migrate.cpp b/libktorrent/migrate/migrate.cpp index eddde83..a59f83c 100644 --- a/libktorrent/migrate/migrate.cpp +++ b/libktorrent/migrate/migrate.cpp @@ -38,14 +38,14 @@ namespace bt Migrate::~Migrate() {} - void Migrate::migrate(const Torrent & tor,const QString & tor_dir,const QString & sdir) + void Migrate::migrate(const Torrent & tor,const TQString & tor_dir,const TQString & sdir) { // check if directory exists if (!bt::Exists(tor_dir)) - throw Error(i18n("The directory %1 does not exist").arg(tor_dir)); + throw Error(i18n("The directory %1 does not exist").tqarg(tor_dir)); // make sure it ends with a / - QString tdir = tor_dir; + TQString tdir = tor_dir; if (!tdir.endsWith(bt::DirSeparator())) tdir += bt::DirSeparator(); |