summaryrefslogtreecommitdiffstats
path: root/src/cddb.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-15 15:33:54 -0600
committerTimothy Pearson <[email protected]>2011-12-15 15:33:54 -0600
commit4614cf2e7bce250f5b9cdef409cb89330d60bb1d (patch)
tree630297f3af9c048e22b4a376bb89f8f73e582983 /src/cddb.cpp
parent4e8c56f8ce07340aadde2098d909a71c645a8000 (diff)
downloadsoundkonverter-4614cf2e7bce250f5b9cdef409cb89330d60bb1d.tar.gz
soundkonverter-4614cf2e7bce250f5b9cdef409cb89330d60bb1d.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/cddb.cpp')
-rwxr-xr-xsrc/cddb.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cddb.cpp b/src/cddb.cpp
index c1ef793..bf66bbb 100755
--- a/src/cddb.cpp
+++ b/src/cddb.cpp
@@ -30,7 +30,7 @@
#include <errno.h>
#include <unistd.h>
#include <tqdir.h>
-#include <tqtextstream.h>
+#include <textstream.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").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)
{