summaryrefslogtreecommitdiffstats
path: root/filters/kword/abiword/ImportStyle.cc
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commitb6edfe41c9395f2e20784cbf0e630af6426950a3 (patch)
tree56ed9b871d4296e6c15949c24e16420be1b28697 /filters/kword/abiword/ImportStyle.cc
parentef39e8e4178a8f98cf5f154916ba0f03e4855206 (diff)
downloadkoffice-b6edfe41c9395f2e20784cbf0e630af6426950a3.tar.gz
koffice-b6edfe41c9395f2e20784cbf0e630af6426950a3.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'filters/kword/abiword/ImportStyle.cc')
-rw-r--r--filters/kword/abiword/ImportStyle.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/filters/kword/abiword/ImportStyle.cc b/filters/kword/abiword/ImportStyle.cc
index 62d951e5f..4f84a8e48 100644
--- a/filters/kword/abiword/ImportStyle.cc
+++ b/filters/kword/abiword/ImportStyle.cc
@@ -57,7 +57,7 @@ void StyleDataMap::defineNewStyleFromOld(const TQString& strName, const TQString
return;
}
- StyleDataMap::Iterator it=tqfind(strOld);
+ StyleDataMap::Iterator it=find(strOld);
if (it==end())
{
defineNewStyle(strName,level,strProps);
@@ -76,7 +76,7 @@ void StyleDataMap::defineNewStyle(const TQString& strName, const int level,
{
// Despite its name, this method can be called multiple times
// We must take care that KWord just gets it only one time.
- StyleDataMap::Iterator it=tqfind(strName);
+ StyleDataMap::Iterator it=find(strName);
if (it==end())
{
// The style does not exist yet, so we must define it.
@@ -95,7 +95,7 @@ void StyleDataMap::defineNewStyle(const TQString& strName, const int level,
StyleDataMap::Iterator StyleDataMap::useOrCreateStyle(const TQString& strName)
{
// We are using a style but we are not sure if it is defined
- StyleDataMap::Iterator it=tqfind(strName);
+ StyleDataMap::Iterator it=find(strName);
if (it==end())
{
// The style is not yet defined!