diff options
Diffstat (limited to 'src/gui/symbolviewer.cpp')
-rw-r--r-- | src/gui/symbolviewer.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/symbolviewer.cpp b/src/gui/symbolviewer.cpp index da4d6bd..170880b 100644 --- a/src/gui/symbolviewer.cpp +++ b/src/gui/symbolviewer.cpp @@ -61,18 +61,18 @@ void SymbolViewerItem::radixChanged() //BEGIN class SymbolView SymbolViewer * SymbolViewer::m_pSelf = 0l; -SymbolViewer * SymbolViewer::self( KateMDI::ToolView * tqparent ) +SymbolViewer * SymbolViewer::self( KateMDI::ToolView * parent ) { if (!m_pSelf) { - assert (tqparent); - m_pSelf = new SymbolViewer(tqparent); + assert (parent); + m_pSelf = new SymbolViewer(parent); } return m_pSelf; } -SymbolViewer::SymbolViewer( KateMDI::ToolView * tqparent ) - : TQWidget( (TQWidget*)tqparent ) +SymbolViewer::SymbolViewer( KateMDI::ToolView * parent ) + : TQWidget( (TQWidget*)parent ) { TQGridLayout * grid = new TQGridLayout( this, 1, 1, 0, 6 ); |