diff options
author | Timothy Pearson <[email protected]> | 2011-12-16 09:57:41 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-16 09:57:41 -0600 |
commit | ef9e895fa20a6118dacbd997a1ed7486e14b8ec6 (patch) | |
tree | 1a4f00ea9a3840933a87b3447a923222e53d092c /src/cddb.cpp | |
parent | 4614cf2e7bce250f5b9cdef409cb89330d60bb1d (diff) | |
download | soundkonverter-ef9e895fa20a6118dacbd997a1ed7486e14b8ec6.tar.gz soundkonverter-ef9e895fa20a6118dacbd997a1ed7486e14b8ec6.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 4614cf2e7bce250f5b9cdef409cb89330d60bb1d.
Diffstat (limited to 'src/cddb.cpp')
-rwxr-xr-x | src/cddb.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cddb.cpp b/src/cddb.cpp index bf66bbb..c1ef793 100755 --- a/src/cddb.cpp +++ b/src/cddb.cpp @@ -30,7 +30,7 @@ #include <errno.h> #include <unistd.h> #include <tqdir.h> -#include <textstream.h> +#include <tqtextstream.h> #include <tqregexp.h> //#include <tqapp.h> #include <tqstring.h> @@ -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").arg(i); + m_names[i] += i18n("Track %1").tqarg(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").arg(id, 0, 16).rightJustify(8, '0'); + filename = TQString("%1").tqarg(id, 0, 16).rightJustify(8, '0'); TQStringList::ConstIterator it; for (it = cddb_dirs.begin(); it != cddb_dirs.end(); ++it) { |