From dfb7562b7e607f0ae077a6a436966203029df56d Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 9 Jul 2011 02:23:29 +0000 Subject: Remove the tq in front of these incorrectly TQt4-converted methods/data members: tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- indexlib/mempool.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'indexlib/mempool.h') diff --git a/indexlib/mempool.h b/indexlib/mempool.h index 95416f080..fca5596d5 100644 --- a/indexlib/mempool.h +++ b/indexlib/mempool.h @@ -114,20 +114,20 @@ struct mempool /* : boost::noncopyable */ { friend struct list_node_manager; struct list_node_manager { protected: - const mempool* tqparent_; + const mempool* parent_; public: - explicit list_node_manager( const mempool* p = 0 ):tqparent_( p ) {} + explicit list_node_manager( const mempool* p = 0 ):parent_( p ) {} void* rw_base( unsigned idx ) const { - return tqparent_->manager_->rw_base( idx ); + return parent_->manager_->rw_base( idx ); } const void* ronly_base( unsigned idx ) const { - return tqparent_->manager_->ronly_base( idx ); + return parent_->manager_->ronly_base( idx ); } }; START_THING( list_node, thing ) - void set_tqparent( const mempool* p ) { this->tqparent_ = p; } + void set_tqparent( const mempool* p ) { this->parent_ = p; } MEMBER( uint16_t, order, 0 ) MEMBER( uint32_t, next, 2 ) MEMBER( uint32_t, prev, 6 ) -- cgit v1.2.1