summaryrefslogtreecommitdiffstats
path: root/tdecachegrind/tdecachegrind/functionselection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdecachegrind/tdecachegrind/functionselection.cpp')
-rw-r--r--tdecachegrind/tdecachegrind/functionselection.cpp60
1 files changed, 30 insertions, 30 deletions
diff --git a/tdecachegrind/tdecachegrind/functionselection.cpp b/tdecachegrind/tdecachegrind/functionselection.cpp
index 84bdeabd..7a866ea7 100644
--- a/tdecachegrind/tdecachegrind/functionselection.cpp
+++ b/tdecachegrind/tdecachegrind/functionselection.cpp
@@ -57,17 +57,17 @@ FunctionSelection::FunctionSelection( TopLevel* top,
groupBox->insertStringList(args);
// this needs same order of grouptype actionlist!
- connect(groupBox, TQT_SIGNAL(activated(int)),
- top, TQT_SLOT(groupTypeSelected(int)));
+ connect(groupBox, TQ_SIGNAL(activated(int)),
+ top, TQ_SLOT(groupTypeSelected(int)));
// search while typing...
- connect(searchEdit, TQT_SIGNAL(textChanged(const TQString&)),
- this, TQT_SLOT(searchChanged(const TQString&)));
- connect(&_searchTimer, TQT_SIGNAL(timeout()),
- this, TQT_SLOT(queryDelayed()));
+ connect(searchEdit, TQ_SIGNAL(textChanged(const TQString&)),
+ this, TQ_SLOT(searchChanged(const TQString&)));
+ connect(&_searchTimer, TQ_SIGNAL(timeout()),
+ this, TQ_SLOT(queryDelayed()));
// select first matching group/function on return
- connect(searchEdit, TQT_SIGNAL(returnPressed()),
- this, TQT_SLOT(searchReturnPressed()));
+ connect(searchEdit, TQ_SIGNAL(returnPressed()),
+ this, TQ_SLOT(searchReturnPressed()));
searchEdit->setMinimumWidth(50);
// we start with desending cost sorting
@@ -91,33 +91,33 @@ FunctionSelection::FunctionSelection( TopLevel* top,
#if 0
// single click press activation
- connect(functionList, TQT_SIGNAL(selectionChanged(TQListViewItem*)),
- this, TQT_SLOT(functionActivated(TQListViewItem*)));
+ connect(functionList, TQ_SIGNAL(selectionChanged(TQListViewItem*)),
+ this, TQ_SLOT(functionActivated(TQListViewItem*)));
connect(functionList,
- TQT_SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint &, int)),
- this, TQT_SLOT(functionContext(TQListViewItem*, const TQPoint &, int)));
+ TQ_SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint &, int)),
+ this, TQ_SLOT(functionContext(TQListViewItem*, const TQPoint &, int)));
#else
// single click release activation
- connect(functionList, TQT_SIGNAL(selectionChanged(TQListViewItem*)),
- this, TQT_SLOT(functionSelected(TQListViewItem*)));
- connect(functionList, TQT_SIGNAL(clicked(TQListViewItem*)),
- this, TQT_SLOT(functionActivated(TQListViewItem*)));
- connect(functionList, TQT_SIGNAL(returnPressed(TQListViewItem*)),
- this, TQT_SLOT(functionActivated(TQListViewItem*)));
+ connect(functionList, TQ_SIGNAL(selectionChanged(TQListViewItem*)),
+ this, TQ_SLOT(functionSelected(TQListViewItem*)));
+ connect(functionList, TQ_SIGNAL(clicked(TQListViewItem*)),
+ this, TQ_SLOT(functionActivated(TQListViewItem*)));
+ connect(functionList, TQ_SIGNAL(returnPressed(TQListViewItem*)),
+ this, TQ_SLOT(functionActivated(TQListViewItem*)));
connect(functionList,
- TQT_SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint &, int)),
- this, TQT_SLOT(functionContext(TQListViewItem*, const TQPoint &, int)));
+ TQ_SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint &, int)),
+ this, TQ_SLOT(functionContext(TQListViewItem*, const TQPoint &, int)));
#endif
- connect(groupList, TQT_SIGNAL(selectionChanged(TQListViewItem*)),
- this, TQT_SLOT(groupSelected(TQListViewItem*)));
- connect(groupList, TQT_SIGNAL(doubleClicked(TQListViewItem*)),
- this, TQT_SLOT(groupDoubleClicked(TQListViewItem*)));
- connect(groupList, TQT_SIGNAL(returnPressed(TQListViewItem*)),
- this, TQT_SLOT(groupDoubleClicked(TQListViewItem*)));
+ connect(groupList, TQ_SIGNAL(selectionChanged(TQListViewItem*)),
+ this, TQ_SLOT(groupSelected(TQListViewItem*)));
+ connect(groupList, TQ_SIGNAL(doubleClicked(TQListViewItem*)),
+ this, TQ_SLOT(groupDoubleClicked(TQListViewItem*)));
+ connect(groupList, TQ_SIGNAL(returnPressed(TQListViewItem*)),
+ this, TQ_SLOT(groupDoubleClicked(TQListViewItem*)));
connect(groupList,
- TQT_SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint &, int)),
- this, TQT_SLOT(groupContext(TQListViewItem*, const TQPoint &, int)));
+ TQ_SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint &, int)),
+ this, TQ_SLOT(groupContext(TQListViewItem*, const TQPoint &, int)));
// start hidden
groupList->hide();
@@ -237,8 +237,8 @@ void FunctionSelection::addGroupMenu(TQPopupMenu* popup)
case TraceItem::FunctionCycle: popup1->setItemChecked(4, true); break;
default: break;
}
- connect(popup1,TQT_SIGNAL(activated(int)),
- _topLevel,TQT_SLOT(groupTypeSelected(int)));
+ connect(popup1,TQ_SIGNAL(activated(int)),
+ _topLevel,TQ_SLOT(groupTypeSelected(int)));
popup->insertItem(i18n("Grouping"), popup1);
}