summaryrefslogtreecommitdiffstats
path: root/src/app/history.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/history.cpp')
-rw-r--r--src/app/history.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/app/history.cpp b/src/app/history.cpp
index 5eb7783..91a129f 100644
--- a/src/app/history.cpp
+++ b/src/app/history.cpp
@@ -42,21 +42,21 @@ History::History(TDEActionCollection* actionCollection) {
TQPair<KGuiItem, KGuiItem> backForward = KStdGuiItem::backAndForward();
mGoBack=new TDEToolBarPopupAction(backForward.first,
TDEStdAccel::shortcut(TDEStdAccel::Back),
- this, TQT_SLOT(goBack()), actionCollection, "go_back");
+ this, TQ_SLOT(goBack()), actionCollection, "go_back");
mGoForward=new TDEToolBarPopupAction(backForward.second,
TDEStdAccel::shortcut(TDEStdAccel::Forward),
- this, TQT_SLOT(goForward()), actionCollection, "go_forward");
+ this, TQ_SLOT(goForward()), actionCollection, "go_forward");
// Connections
- connect(mGoBack->popupMenu(),TQT_SIGNAL(activated(int)),
- this,TQT_SLOT(goBackTo(int)) );
- connect(mGoForward->popupMenu(),TQT_SIGNAL(activated(int)),
- this,TQT_SLOT(goForwardTo(int)) );
-
- connect(mGoBack->popupMenu(), TQT_SIGNAL(aboutToShow()),
- this, TQT_SLOT(fillGoBackMenu()) );
- connect(mGoForward->popupMenu(), TQT_SIGNAL(aboutToShow()),
- this, TQT_SLOT(fillGoForwardMenu()) );
+ connect(mGoBack->popupMenu(),TQ_SIGNAL(activated(int)),
+ this,TQ_SLOT(goBackTo(int)) );
+ connect(mGoForward->popupMenu(),TQ_SIGNAL(activated(int)),
+ this,TQ_SLOT(goForwardTo(int)) );
+
+ connect(mGoBack->popupMenu(), TQ_SIGNAL(aboutToShow()),
+ this, TQ_SLOT(fillGoBackMenu()) );
+ connect(mGoForward->popupMenu(), TQ_SIGNAL(aboutToShow()),
+ this, TQ_SLOT(fillGoForwardMenu()) );
}