summaryrefslogtreecommitdiffstats
path: root/juk/tag.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'juk/tag.cpp')
-rw-r--r--juk/tag.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/juk/tag.cpp b/juk/tag.cpp
index a9d37297..27f0a91c 100644
--- a/juk/tag.cpp
+++ b/juk/tag.cpp
@@ -245,8 +245,8 @@ void Tag::setup(TagLib::File *file)
m_lengthString = TQString::number(minutes) + (seconds >= 10 ? ":" : ":0") + TQString::number(seconds);
if(m_title.isEmpty()) {
- int i = m_fileName.tqfindRev('/');
- int j = m_fileName.tqfindRev('.');
+ int i = m_fileName.findRev('/');
+ int j = m_fileName.findRev('.');
m_title = i > 0 ? m_fileName.mid(i + 1, j - i - 1) : m_fileName;
}