From 84f5a315c3429b47a7eff15e626e2efdbe4f6e5e Mon Sep 17 00:00:00 2001 From: Slávek Banko Date: Tue, 8 Oct 2013 00:13:25 +0200 Subject: Initial TQt conversion --- src/calltreemanager.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/calltreemanager.cpp') 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, -- cgit v1.2.3