diff options
Diffstat (limited to 'kxsldbg/kxsldbgpart/xsldbgsourcesimpl.cpp')
-rw-r--r-- | kxsldbg/kxsldbgpart/xsldbgsourcesimpl.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kxsldbg/kxsldbgpart/xsldbgsourcesimpl.cpp b/kxsldbg/kxsldbgpart/xsldbgsourcesimpl.cpp index a4bbcc94..624b4880 100644 --- a/kxsldbg/kxsldbgpart/xsldbgsourcesimpl.cpp +++ b/kxsldbg/kxsldbgpart/xsldbgsourcesimpl.cpp @@ -28,8 +28,8 @@ XsldbgSourcesImpl::XsldbgSourcesImpl(XsldbgDebugger *debugger, : XsldbgSources(tqparent, name), XsldbgDialogBase() { this->debugger = debugger; - connect(debugger, TQT_SIGNAL(sourceItem(TQString /* fileName */, TQString /* tqparentFileName */, int /*lineNumber */)), - this, TQT_SLOT(slotProcSourceItem(TQString /* fileName */, TQString /* tqparentFileName */, int /*lineNumber */))); + connect(debugger, TQT_SIGNAL(sourceItem(TQString /* fileName */, TQString /* parentFileName */, int /*lineNumber */)), + this, TQT_SLOT(slotProcSourceItem(TQString /* fileName */, TQString /* parentFileName */, int /*lineNumber */))); connect( sourceListView, TQT_SIGNAL(selectionChanged(TQListViewItem *)), this, TQT_SLOT(selectionChanged(TQListViewItem*))); @@ -42,13 +42,13 @@ XsldbgSourcesImpl::~XsldbgSourcesImpl(){ debugger = 0L; } -void XsldbgSourcesImpl::slotProcSourceItem(TQString fileName , TQString tqparentFileName , int lineNumber ) +void XsldbgSourcesImpl::slotProcSourceItem(TQString fileName , TQString parentFileName , int lineNumber ) { if (fileName.isNull()){ sourceListView->clear(); }else{ sourceListView->insertItem(new XsldbgGlobalListItem(sourceListView, - tqparentFileName, lineNumber, fileName)); + parentFileName, lineNumber, fileName)); } } |