diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 03feb89582fc354acaeb1df65a687361a661486d (patch) | |
tree | 03a4187dca202e597505821cf81e2ec419b6e2ff /khelpcenter/toc.cpp | |
parent | 9a3f0aacd44fb866833ebcb852df3cd31475cb33 (diff) | |
download | tdebase-03feb89582fc354acaeb1df65a687361a661486d.tar.gz tdebase-03feb89582fc354acaeb1df65a687361a661486d.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khelpcenter/toc.cpp')
-rw-r--r-- | khelpcenter/toc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/khelpcenter/toc.cpp b/khelpcenter/toc.cpp index 0f0e8af07..cdc7d92d9 100644 --- a/khelpcenter/toc.cpp +++ b/khelpcenter/toc.cpp @@ -261,8 +261,8 @@ TOCSectionItem::TOCSectionItem( TOC *toc, TOCChapterItem *parent, TQListViewItem TQString TOCSectionItem::url() { - if ( static_cast<TOCSectionItem *>( tqparent()->firstChild() ) == this ) - return static_cast<TOCChapterItem *>( tqparent() )->url() + "#" + m_name; + if ( static_cast<TOCSectionItem *>( parent()->firstChild() ) == this ) + return static_cast<TOCChapterItem *>( parent() )->url() + "#" + m_name; return "help:" + toc()->application() + "/" + m_name + ".html"; } |