diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | dfb7562b7e607f0ae077a6a436966203029df56d (patch) | |
tree | d58abf870c3754458d44a192a0b9e186f506c4ed /indexlib/mempool.h | |
parent | fc5197ec86abe5dc0fa4b48979684845b52357f2 (diff) | |
download | tdepim-dfb7562b7e607f0ae077a6a436966203029df56d.tar.gz tdepim-dfb7562b7e607f0ae077a6a436966203029df56d.zip |
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
Diffstat (limited to 'indexlib/mempool.h')
-rw-r--r-- | indexlib/mempool.h | 10 |
1 files changed, 5 insertions, 5 deletions
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<list_node_manager> ) - 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 ) |