summaryrefslogtreecommitdiff
path: root/svtools/source/contnr/svimpbox.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-19 17:51:34 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-19 17:51:34 +0200
commit65fe84d273a4fe099cd03be088165672788cf32e (patch)
tree0795ea30238cb3b8f8ab65efc894b909cd14cfc8 /svtools/source/contnr/svimpbox.cxx
parent5a3f4ccd6e98412b3e773f9790b8f078569578ae (diff)
loplugin:defaultparams
Change-Id: I7f24a05bdf01b455d470f5b560359dea3f407c58
Diffstat (limited to 'svtools/source/contnr/svimpbox.cxx')
-rw-r--r--svtools/source/contnr/svimpbox.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/contnr/svimpbox.cxx b/svtools/source/contnr/svimpbox.cxx
index aac8af7d8a00..5ba4a954e407 100644
--- a/svtools/source/contnr/svimpbox.cxx
+++ b/svtools/source/contnr/svimpbox.cxx
@@ -1572,7 +1572,7 @@ void SvImpLBox::CollapsingEntry( SvTreeListEntry* pEntry )
if( !pView->IsEntryVisible( pEntry ) || !pStartEntry )
return;
- SelAllDestrAnch( false, true ); // deselect all
+ SelAllDestrAnch( false ); // deselect all
// is the collapsed cursor visible?
long nY = GetEntryLine( pEntry );
@@ -1763,7 +1763,7 @@ void SvImpLBox::EntryRemoved()
void SvImpLBox::MovingEntry( SvTreeListEntry* pEntry )
{
int bDeselAll = nFlags & F_DESEL_ALL;
- SelAllDestrAnch( false, true ); // DeselectAll();
+ SelAllDestrAnch( false ); // DeselectAll();
if( !bDeselAll )
nFlags &= (~F_DESEL_ALL);
@@ -1839,7 +1839,7 @@ void SvImpLBox::EntryInserted( SvTreeListEntry* pEntry )
return;
int bDeselAll = nFlags & F_DESEL_ALL;
if( bDeselAll )
- SelAllDestrAnch( false, true );
+ SelAllDestrAnch( false );
else
DestroyAnchor();
// nFlags &= (~F_DESEL_ALL);
@@ -2067,7 +2067,7 @@ void SvImpLBox::MouseButtonDown( const MouseEvent& rMEvt )
{
// select anew & bye
if( !bSimpleTravel && !aSelEng.IsAlwaysAdding())
- SelAllDestrAnch( false, true ); // DeselectAll();
+ SelAllDestrAnch( false ); // DeselectAll();
SetCursor( pEntry );
return;
@@ -3119,7 +3119,7 @@ void SvImpLBox::SetCurEntry( SvTreeListEntry* pEntry )
if ( ( aSelEng.GetSelectionMode() != SINGLE_SELECTION )
&& ( aSelEng.GetSelectionMode() != NO_SELECTION )
)
- SelAllDestrAnch( false, true );
+ SelAllDestrAnch( false );
if ( pEntry )
MakeVisible( pEntry );
SetCursor( pEntry );