From b6edfe41c9395f2e20784cbf0e630af6426950a3 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/koffice@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- lib/kofficecore/KoView.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/kofficecore/KoView.cpp') diff --git a/lib/kofficecore/KoView.cpp b/lib/kofficecore/KoView.cpp index 87751a341..e2b9775e4 100644 --- a/lib/kofficecore/KoView.cpp +++ b/lib/kofficecore/KoView.cpp @@ -203,7 +203,7 @@ void KoView::setPartManager( KParts::PartManager *manager ) { d->m_manager = manager; if ( !koDocument()->isSingleViewMode() && - manager->parts()->tqcontainsRef( koDocument() ) == 0 ) // is there another view registered? + manager->parts()->containsRef( koDocument() ) == 0 ) // is there another view registered? { d->m_registered = true; // no, so we have to register now and ungregister again in the DTOR manager->addPart( koDocument(), false ); @@ -241,11 +241,11 @@ KoDocument *KoView::hitTest( const TQPoint &viewPos ) { if ( ( viewChild = child( docChild->document() ) ) ) { - if ( viewChild->frameRegion().tqcontains( pos ) ) + if ( viewChild->frameRegion().contains( pos ) ) return 0; } else - if ( docChild->frameRegion().tqcontains( pos ) ) + if ( docChild->frameRegion().contains( pos ) ) return 0; } @@ -254,11 +254,11 @@ KoDocument *KoView::hitTest( const TQPoint &viewPos ) { if ( ( viewChild = child( docChild->document() ) ) ) { - if ( viewChild->frameRegion().tqcontains( pos ) ) + if ( viewChild->frameRegion().contains( pos ) ) return 0; } else - if ( docChild->frameRegion().tqcontains( pos ) ) + if ( docChild->frameRegion().contains( pos ) ) return 0; } -- cgit v1.2.3