diff options
Diffstat (limited to 'src/bookmarksdlg.cpp')
-rw-r--r-- | src/bookmarksdlg.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bookmarksdlg.cpp b/src/bookmarksdlg.cpp index 577476a..f42deb6 100644 --- a/src/bookmarksdlg.cpp +++ b/src/bookmarksdlg.cpp @@ -28,28 +28,28 @@ #include "bookmarksdlg.h" #include "queryview.h" -BookmarksDlg::BookmarksDlg(QWidget* pParent, const char* szName) : +BookmarksDlg::BookmarksDlg(TQWidget* pParent, const char* szName) : BookmarksLayout (pParent, szName, true) { // Do not show the "Function" column m_pView->setColumnWidth(0, 0); // Handle requests for source locations - connect(m_pView, SIGNAL(lineRequested(const QString&, uint)), this, - SLOT(slotLineRequested(const QString&, uint))); + connect(m_pView, SIGNAL(lineRequested(const TQString&, uint)), this, + SLOT(slotLineRequested(const TQString&, uint))); } BookmarksDlg::~BookmarksDlg() { } -void BookmarksDlg::getBookmark(QString& sPath, uint& nLine) +void BookmarksDlg::getBookmark(TQString& sPath, uint& nLine) { sPath = m_sPath; nLine = m_nLine; } -void BookmarksDlg::slotLineRequested(const QString& sPath, uint nLine) +void BookmarksDlg::slotLineRequested(const TQString& sPath, uint nLine) { m_sPath = sPath; m_nLine = nLine; |