summaryrefslogtreecommitdiffstats
path: root/languages/php/phperrorview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/php/phperrorview.cpp')
-rw-r--r--languages/php/phperrorview.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/languages/php/phperrorview.cpp b/languages/php/phperrorview.cpp
index c21f9fdc..658812f7 100644
--- a/languages/php/phperrorview.cpp
+++ b/languages/php/phperrorview.cpp
@@ -56,13 +56,13 @@
class ProblemItem: public KListViewItem
{
public:
- ProblemItem( TQListView* tqparent, const TQString& problem,
+ ProblemItem( TQListView* parent, const TQString& problem,
const TQString& file, const TQString& line, const TQString& column )
- : KListViewItem( tqparent, problem, file, line, column ) {}
+ : KListViewItem( parent, problem, file, line, column ) {}
- ProblemItem( TQListViewItem* tqparent, const TQString& problem,
+ ProblemItem( TQListViewItem* parent, const TQString& problem,
const TQString& file, const TQString& line, const TQString& column )
- : KListViewItem( tqparent, problem, file, line, column ) {}
+ : KListViewItem( parent, problem, file, line, column ) {}
int compare( TQListViewItem* item, int column, bool ascending ) const {
if( column == 2 || column == 3 ){
@@ -77,8 +77,8 @@ public:
};
-PHPErrorView::PHPErrorView( PHPSupportPart* part, TQWidget* tqparent, const char* name )
- : TQWidget( tqparent, name ? name : "problemreporter" ),
+PHPErrorView::PHPErrorView( PHPSupportPart* part, TQWidget* parent, const char* name )
+ : TQWidget( parent, name ? name : "problemreporter" ),
m_phpSupport( part ),
m_document( 0 ),
m_markIface( 0 )