diff options
Diffstat (limited to 'src/kchmviewwindowmgr.cpp')
-rw-r--r-- | src/kchmviewwindowmgr.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kchmviewwindowmgr.cpp b/src/kchmviewwindowmgr.cpp index b65cf7c..4023d7e 100644 --- a/src/kchmviewwindowmgr.cpp +++ b/src/kchmviewwindowmgr.cpp @@ -34,8 +34,8 @@ #endif -KCHMViewWindowMgr::KCHMViewWindowMgr( TQWidget *tqparent ) - : TQTabWidget( tqparent ) //TQTabWidget +KCHMViewWindowMgr::KCHMViewWindowMgr( TQWidget *parent ) + : TQTabWidget( parent ) //TQTabWidget { m_MenuWindow = 0; @@ -58,11 +58,11 @@ KCHMViewWindowMgr::~KCHMViewWindowMgr( ) { } -void KCHMViewWindowMgr::createMenu( KCHMMainWindow * tqparent ) +void KCHMViewWindowMgr::createMenu( KCHMMainWindow * parent ) { // Create the approptiate menu entries in 'View' main menu - m_MenuWindow = new KTQPopupMenu( tqparent ); - tqparent->menuBar()->insertItem( i18n( "&Window"), m_MenuWindow ); + m_MenuWindow = new KTQPopupMenu( parent ); + parent->menuBar()->insertItem( i18n( "&Window"), m_MenuWindow ); m_menuIdClose = m_MenuWindow->insertItem( i18n( "&Close"), this, TQT_SLOT( closeCurrentWindow()), CTRL+Key_W ); m_MenuWindow->insertSeparator(); |