Fix Intel compiler warnings about hiding member variables.
Rename method parameters to avoid conflicts with member variables names. Closes #15971. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76029 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -3074,10 +3074,10 @@ int wxDataViewMainWindow::GetLineHeight( unsigned int row ) const
|
||||
class RowToTreeNodeJob: public DoJob
|
||||
{
|
||||
public:
|
||||
RowToTreeNodeJob( unsigned int row , int current, wxDataViewTreeNode * node )
|
||||
RowToTreeNodeJob( unsigned int row_ , int current_, wxDataViewTreeNode * node )
|
||||
{
|
||||
this->row = row;
|
||||
this->current = current;
|
||||
this->row = row_;
|
||||
this->current = current_;
|
||||
ret = NULL;
|
||||
parent = node;
|
||||
}
|
||||
|
Reference in New Issue
Block a user