From 0254ebaa5e056092461fd585b6851d15faa43035 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: rename the following methods: tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/translators/csvexporter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/translators/csvexporter.cpp') diff --git a/src/translators/csvexporter.cpp b/src/translators/csvexporter.cpp index ef608b7..6936ef0 100644 --- a/src/translators/csvexporter.cpp +++ b/src/translators/csvexporter.cpp @@ -46,13 +46,13 @@ TQString CSVExporter::fileFilter() const { TQString& CSVExporter::escapeText(TQString& text_) { bool quotes = false; - if(text_.tqfind('"') != -1) { + if(text_.find('"') != -1) { quotes = true; // quotation marks will be escaped by using a double pair - text_.tqreplace('"', TQString::tqfromLatin1("\"\"")); + text_.replace('"', TQString::tqfromLatin1("\"\"")); } // if the text contains quotes or the delimiter, it needs to be surrounded by quotes - if(quotes || text_.tqfind(m_delimiter) != -1) { + if(quotes || text_.find(m_delimiter) != -1) { text_.prepend('"'); text_.append('"'); } -- cgit v1.2.1