From a90eb215f53c95d81f95b32255098066d90556d9 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 18 Dec 2011 18:13:41 -0600 Subject: Rename old tq methods that no longer need a unique name --- plugins/rssfeed/rssfilter.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'plugins/rssfeed/rssfilter.cpp') diff --git a/plugins/rssfeed/rssfilter.cpp b/plugins/rssfeed/rssfilter.cpp index 51ac2ff..32d13d0 100644 --- a/plugins/rssfeed/rssfilter.cpp +++ b/plugins/rssfeed/rssfilter.cpp @@ -302,8 +302,8 @@ namespace kt regEx.setPattern(*episodeFormats.at(i)); if (regEx.search(article.title()) >= 0) { - season = (*regEx.tqcapturedTexts().at(1)).toInt(); - episode = (*regEx.tqcapturedTexts().at(2)).toInt(); + season = (*regEx.capturedTexts().at(1)).toInt(); + episode = (*regEx.capturedTexts().at(2)).toInt(); if (!episodeInRange(season,episode,ignoreMatches,alreadyDownloaded)) { return false; @@ -313,8 +313,8 @@ namespace kt if (regEx.search(article.link().prettyURL()) >= 0) { - season = (*regEx.tqcapturedTexts().at(1)).toInt(); - episode = (*regEx.tqcapturedTexts().at(2)).toInt(); + season = (*regEx.capturedTexts().at(1)).toInt(); + episode = (*regEx.capturedTexts().at(2)).toInt(); if (!episodeInRange(season,episode,ignoreMatches,alreadyDownloaded)) { return false; @@ -324,8 +324,8 @@ namespace kt if (regEx.search(article.description()) >= 0) { - season = (*regEx.tqcapturedTexts().at(1)).toInt(); - episode = (*regEx.tqcapturedTexts().at(2)).toInt(); + season = (*regEx.capturedTexts().at(1)).toInt(); + episode = (*regEx.capturedTexts().at(2)).toInt(); if (!episodeInRange(season,episode,ignoreMatches,alreadyDownloaded)) { return false; -- cgit v1.2.1