From 9a3f0aacd44fb866833ebcb852df3cd31475cb33 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/kdebase@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kwin/sm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kwin/sm.cpp') diff --git a/kwin/sm.cpp b/kwin/sm.cpp index 045d4f924..3a6aa3ebe 100644 --- a/kwin/sm.cpp +++ b/kwin/sm.cpp @@ -259,8 +259,8 @@ bool Workspace::windowRoleMatch( const TQCString& role1, const TQCString& role2 { if( role1.isEmpty() && role2.isEmpty()) return true; - int pos1 = role1.tqfind( '#' ); - int pos2 = role2.tqfind( '#' ); + int pos1 = role1.find( '#' ); + int pos2 = role2.find( '#' ); bool ret; if( pos1 < 0 || pos2 < 0 || pos1 != pos2 ) ret = role1 == role2; -- cgit v1.2.3