diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:15:35 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:15:35 -0600 |
commit | f78eb03afb8c9a380985d26286afc40b4c89b292 (patch) | |
tree | 3c087e2f119e645c902958c3bc3c802abf078ad0 /languages/cpp/debugger/dbgpsdlg.cpp | |
parent | da1941ccadffe5ae70ee111c53f0ec2b3d990869 (diff) | |
download | tdevelop-f78eb03afb8c9a380985d26286afc40b4c89b292.tar.gz tdevelop-f78eb03afb8c9a380985d26286afc40b4c89b292.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'languages/cpp/debugger/dbgpsdlg.cpp')
-rw-r--r-- | languages/cpp/debugger/dbgpsdlg.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/languages/cpp/debugger/dbgpsdlg.cpp b/languages/cpp/debugger/dbgpsdlg.cpp index 8033a993..22104794 100644 --- a/languages/cpp/debugger/dbgpsdlg.cpp +++ b/languages/cpp/debugger/dbgpsdlg.cpp @@ -53,7 +53,7 @@ namespace GDBDebugger Dbg_PS_Dialog::Dbg_PS_Dialog(TQWidget *parent, const char *name) : KDialog(parent, name, true), // modal psProc_(0), - pids_(new KListView(this)), + pids_(new TDEListView(this)), pidLines_(TQString()) { setCaption(i18n("Attach to Process")); @@ -67,7 +67,7 @@ Dbg_PS_Dialog::Dbg_PS_Dialog(TQWidget *parent, const char *name) TQBoxLayout *topLayout = new TQVBoxLayout(this, 5); - searchLineWidget_ = new KListViewSearchLineWidget(pids_, this); + searchLineWidget_ = new TDEListViewSearchLineWidget(pids_, this); topLayout->addWidget(searchLineWidget_); topLayout->addWidget(pids_); @@ -187,7 +187,7 @@ void Dbg_PS_Dialog::slotProcessExited() start = pos+1; } - // Need to set focus here too, as KListView will + // Need to set focus here too, as TDEListView will // 'steal' it otherwise. searchLineWidget_->searchLine()->setFocus(); } |