summaryrefslogtreecommitdiffstats
path: root/src/calltreemanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/calltreemanager.cpp')
-rw-r--r--src/calltreemanager.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/calltreemanager.cpp b/src/calltreemanager.cpp
index 5dc8e9f..ac03cac 100644
--- a/src/calltreemanager.cpp
+++ b/src/calltreemanager.cpp
@@ -34,7 +34,7 @@
* @param pParent The widget to use as the parent of all Call Tree
* dialogues
*/
-CallTreeManager::CallTreeManager(QWidget* pParent) : QObject(pParent)
+CallTreeManager::CallTreeManager(TQWidget* pParent) : TQObject(pParent)
{
// Delete dialogue objects when they are removed from the list
m_lstDialogs.setAutoDelete(true);
@@ -52,8 +52,8 @@ CallTreeManager::~CallTreeManager()
* @param sProjPath The project's directory
* @param slFiles Holds a list of saved file names, upon return
*/
-void CallTreeManager::saveOpenDialogs(const QString& sProjPath,
- QStringList& slFiles)
+void CallTreeManager::saveOpenDialogs(const TQString& sProjPath,
+ TQStringList& slFiles)
{
CallTreeDlg *pDlg;
@@ -70,10 +70,10 @@ void CallTreeManager::saveOpenDialogs(const QString& sProjPath,
* @param sProjPath The project's directory
* @param slFiles A list of file names to open
*/
-void CallTreeManager::loadOpenDialogs(const QString& sProjPath,
- const QStringList& slFiles)
+void CallTreeManager::loadOpenDialogs(const TQString& sProjPath,
+ const TQStringList& slFiles)
{
- QStringList::ConstIterator itr;
+ TQStringList::ConstIterator itr;
CallTreeDlg *pDlg;
for (itr = slFiles.begin(); itr != slFiles.end(); ++itr) {
@@ -104,8 +104,8 @@ CallTreeDlg* CallTreeManager::addDialog()
m_lstDialogs.append(pDlg);
// Open an editor whenever a function name is double-clicked
- connect(pDlg, SIGNAL(lineRequested(const QString&, uint)),
- this, SIGNAL(lineRequested(const QString&, uint)));
+ connect(pDlg, SIGNAL(lineRequested(const TQString&, uint)),
+ this, SIGNAL(lineRequested(const TQString&, uint)));
// Track the closing of the call tree dialog
connect(pDlg, SIGNAL(closed(const CallTreeDlg*)), this,