diff options
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.") ); |