diff options
author | David Tardon <dtardon@redhat.com> | 2015-07-25 13:07:08 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2015-07-25 13:07:34 +0200 |
commit | 3dec38c9a9fdbe56a4ff7ffb6e4b3a9e9114b0f9 (patch) | |
tree | 6619d7e108c286a0f81ab4ff3fe35797a39b124b /svtools | |
parent | 379737991f0fe26dca74d72aa32bd94fe55402d3 (diff) |
WaE: calling static member function through member call syntax
Change-Id: Ic67777d5c93ae959869a3c005baca2a980dc1341
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/treelistbox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/contnr/treelistbox.cxx b/svtools/source/contnr/treelistbox.cxx index b33c31cabefe..2619b86d245c 100644 --- a/svtools/source/contnr/treelistbox.cxx +++ b/svtools/source/contnr/treelistbox.cxx @@ -3397,7 +3397,7 @@ void SvTreeListBox::SetAlternatingRowColors( bool bEnable ) if( IsExpanded( pEntry ) ) pNextEntry = pModel->FirstChild( pEntry ); else - pNextEntry = pModel->NextSibling( pEntry ); + pNextEntry = SvTreeList::NextSibling( pEntry ); if( !pNextEntry ) pEntry = pModel->Next( pEntry ); |