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 | e47aaa9b34ffc363d268aca989aab28fdfaf9821 (patch) | |
tree | 369b56d21949c574d30f71bdf24bf1e04f5e1877 /src/gui/contexthelp.cpp | |
parent | e05894553004a47b1e2f276bedcf5963b57a3932 (diff) | |
download | ktechlab-e47aaa9b34ffc363d268aca989aab28fdfaf9821.tar.gz ktechlab-e47aaa9b34ffc363d268aca989aab28fdfaf9821.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/contexthelp.cpp')
-rw-r--r-- | src/gui/contexthelp.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/contexthelp.cpp b/src/gui/contexthelp.cpp index e10c30d..f7a2432 100644 --- a/src/gui/contexthelp.cpp +++ b/src/gui/contexthelp.cpp @@ -26,19 +26,19 @@ ContextHelp * ContextHelp::m_pSelf = 0l; -ContextHelp * ContextHelp::self( KateMDI::ToolView * tqparent ) +ContextHelp * ContextHelp::self( KateMDI::ToolView * parent ) { if (!m_pSelf) { - assert(tqparent); - m_pSelf = new ContextHelp(tqparent); + assert(parent); + m_pSelf = new ContextHelp(parent); } return m_pSelf; } -ContextHelp::ContextHelp( KateMDI::ToolView * tqparent ) - : TQWidget( tqparent, "Context Help" ) +ContextHelp::ContextHelp( KateMDI::ToolView * parent ) + : TQWidget( parent, "Context Help" ) { TQWhatsThis::add( this, i18n("Provides context-sensitive help relevant to the current editing being performed.") ); |