diff options
Diffstat (limited to 'src/kchmnavtoolbar.cpp')
-rw-r--r-- | src/kchmnavtoolbar.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kchmnavtoolbar.cpp b/src/kchmnavtoolbar.cpp index a7ac446..e0e8790 100644 --- a/src/kchmnavtoolbar.cpp +++ b/src/kchmnavtoolbar.cpp @@ -26,8 +26,8 @@ #include "iconstorage.h" -KCHMNavToolbar::KCHMNavToolbar( KCHMMainWindow *tqparent ) - : TQToolBar( tqparent ) +KCHMNavToolbar::KCHMNavToolbar( KCHMMainWindow *parent ) + : TQToolBar( parent ) { // Initialize toolbar setLabel( i18n( "Navigation") ); @@ -36,7 +36,7 @@ KCHMNavToolbar::KCHMNavToolbar( KCHMMainWindow *tqparent ) m_toolbarIconBackward = new TQToolButton (iconBackward, i18n( "Move backward in history"), TQString(), - tqparent, + parent, TQT_SLOT( slotNavigateBack() ), this); TQWhatsThis::add( m_toolbarIconBackward, i18n( "Click this button to move backward in browser history") ); @@ -45,7 +45,7 @@ KCHMNavToolbar::KCHMNavToolbar( KCHMMainWindow *tqparent ) m_toolbarIconForward = new TQToolButton (iconForward, i18n( "Move forward in history"), TQString(), - tqparent, + parent, TQT_SLOT( slotNavigateForward() ), this); TQWhatsThis::add( m_toolbarIconForward, i18n( "Click this button to move forward in browser history") ); @@ -54,7 +54,7 @@ KCHMNavToolbar::KCHMNavToolbar( KCHMMainWindow *tqparent ) TQToolButton * hb = new TQToolButton (iconHome, i18n( "Go to the home page"), TQString(), - tqparent, + parent, TQT_SLOT( slotNavigateHome() ), this); TQWhatsThis::add( hb, i18n( "Click this button to move to the home page") ); |