diff options
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/historyAction.cpp | 4 | ||||
-rw-r--r-- | src/app/historyAction.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/app/historyAction.cpp b/src/app/historyAction.cpp index 0013cfe..9d27ef1 100644 --- a/src/app/historyAction.cpp +++ b/src/app/historyAction.cpp @@ -40,8 +40,8 @@ HistoryAction::pop() -HistoryCollection::HistoryCollection( KActionCollection *ac, TQObject *tqparent, const char *name ) - : TQObject( tqparent, name ) +HistoryCollection::HistoryCollection( KActionCollection *ac, TQObject *parent, const char *name ) + : TQObject( parent, name ) , m_b( new HistoryAction( i18n( "Back" ), "back", KStdAccel::back(), ac, "go_back" ) ) , m_f( new HistoryAction( i18n( "Forward" ), "forward", KStdAccel::forward(), ac, "go_forward" ) ) , m_receiver( 0 ) diff --git a/src/app/historyAction.h b/src/app/historyAction.h index dbbf19e..0e5ad28 100644 --- a/src/app/historyAction.h +++ b/src/app/historyAction.h @@ -43,7 +43,7 @@ Q_OBJECT TQ_OBJECT public: - HistoryCollection( KActionCollection *ac, TQObject *tqparent, const char *name ); + HistoryCollection( KActionCollection *ac, TQObject *parent, const char *name ); void save( KConfig *config ); void restore( KConfig *config ); |