diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-02 17:23:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-03 08:16:19 +0200 |
commit | 904c97bbdf4c76709dbcacb11292668b98a9efd8 (patch) | |
tree | 42855fdaf74aca15c6674836a8f603d22aa87744 /sw | |
parent | bb1d5780226bb1b9156580972eea9aa849178742 (diff) |
move SvTreeList::*Sibling to SvTreeListEntry
since they don't depend on SvTreeList at all
Change-Id: If48c83976a95943e5cfa92490d68f74281cf4b5f
Reviewed-on: https://gerrit.libreoffice.org/56819
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/uibase/utlui/content.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/utlui/content.cxx b/sw/source/uibase/utlui/content.cxx index 645469eb143f..c92b39bca0b4 100644 --- a/sw/source/uibase/utlui/content.cxx +++ b/sw/source/uibase/utlui/content.cxx @@ -1165,7 +1165,7 @@ sal_Int8 SwContentTree::ExecuteDrop( const ExecuteDropEvent& rEvt ) while( pChildEntry ) { pEntry = pChildEntry; - pChildEntry = NextSibling( pChildEntry ); + pChildEntry = pChildEntry->NextSibling(); } } pTargetEntry = pEntry; |