diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:40:56 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:40:56 -0600 |
commit | 6afce6c4bc7ea82d8644358216a72a585bffaf0a (patch) | |
tree | 4ace829a6b7d358d7d7a7a99b74891d211b8a3d5 /src/cddb.cpp | |
parent | 546e1d89596af9c0bd0176fb8812bf0faa00d9de (diff) | |
download | soundkonverter-6afce6c4bc7ea82d8644358216a72a585bffaf0a.tar.gz soundkonverter-6afce6c4bc7ea82d8644358216a72a585bffaf0a.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/cddb.cpp')
-rwxr-xr-x | src/cddb.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cddb.cpp b/src/cddb.cpp index c1ef793..cbc936c 100755 --- a/src/cddb.cpp +++ b/src/cddb.cpp @@ -377,7 +377,7 @@ CDDB::parse_read_resp(TQTextStream *stream, TQTextStream *write_stream) for (int i = 0; i < m_tracks; i++) { if (m_names[i].isEmpty()) - m_names[i] += i18n("Track %1").tqarg(i); + m_names[i] += i18n("Track %1").arg(i); //m_names[i].replace(TQRegExp("/"), "%2f"); si = m_names[i].find(" - "); if (si < 0) @@ -423,7 +423,7 @@ CDDB::searchLocal(unsigned int id, TQFile *ret_file) { TQDir dir; TQString filename; - filename = TQString("%1").tqarg(id, 0, 16).rightJustify(8, '0'); + filename = TQString("%1").arg(id, 0, 16).rightJustify(8, '0'); TQStringList::ConstIterator it; for (it = cddb_dirs.begin(); it != cddb_dirs.end(); ++it) { |