summaryrefslogtreecommitdiff
path: root/vcl/source/treelist
diff options
context:
space:
mode:
authorNoel <noel.grandin@collabora.co.uk>2021-01-19 11:23:03 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-01-19 18:24:25 +0100
commit750d96706c36824e599113a70f5741753edcede8 (patch)
treeec3645074dfaff96d434df5cf312fc51f9c34d58 /vcl/source/treelist
parent83f92f0c567ddba9715b2a48836fae78144aa0fd (diff)
loplugin:unusedmethods
GtkPrintWrapper stuff is dead since commit ed07ec7606cb24cccaf6b7b81b2bd308debaa2e6 drop never completed GtkSalPrinter Change-Id: Ia42e9bca020a9683ba247d466f743a0018e920f7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109618 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/treelist')
-rw-r--r--vcl/source/treelist/treelist.cxx7
-rw-r--r--vcl/source/treelist/treelistbox.cxx1
2 files changed, 0 insertions, 8 deletions
diff --git a/vcl/source/treelist/treelist.cxx b/vcl/source/treelist/treelist.cxx
index 1e4759ee6c85..38067fde34e7 100644
--- a/vcl/source/treelist/treelist.cxx
+++ b/vcl/source/treelist/treelist.cxx
@@ -1032,7 +1032,6 @@ SvListView::SvListView()
{
pModel.reset(new SvTreeList(*this));
m_pImpl->InitTable();
- m_bDirtyModel = false;
}
void SvListView::dispose()
@@ -1255,12 +1254,10 @@ void SvListView::ModelNotification( SvListAction nActionId, SvTreeListEntry* pEn
case SvListAction::INSERTED:
m_pImpl->ActionInserted( pEntry1 );
ModelHasInserted( pEntry1 );
- m_bDirtyModel = true;
break;
case SvListAction::INSERTED_TREE:
m_pImpl->ActionInsertedTree( pEntry1 );
ModelHasInsertedTree( pEntry1 );
- m_bDirtyModel = true;
break;
case SvListAction::REMOVING:
ModelIsRemoving( pEntry1 );
@@ -1268,7 +1265,6 @@ void SvListView::ModelNotification( SvListAction nActionId, SvTreeListEntry* pEn
break;
case SvListAction::REMOVED:
ModelHasRemoved( pEntry1 );
- m_bDirtyModel = true;
break;
case SvListAction::MOVING:
ModelIsMoving( pEntry1 );
@@ -1277,14 +1273,12 @@ void SvListView::ModelNotification( SvListAction nActionId, SvTreeListEntry* pEn
case SvListAction::MOVED:
m_pImpl->ActionMoved();
ModelHasMoved( pEntry1 );
- m_bDirtyModel = true;
break;
case SvListAction::CLEARING:
m_pImpl->ActionClear();
ModelHasCleared(); // sic! for compatibility reasons!
break;
case SvListAction::CLEARED:
- m_bDirtyModel = true;
break;
case SvListAction::INVALIDATE_ENTRY:
// no action for the base class
@@ -1292,7 +1286,6 @@ void SvListView::ModelNotification( SvListAction nActionId, SvTreeListEntry* pEn
break;
case SvListAction::RESORTED:
m_pImpl->m_bVisPositionsValid = false;
- m_bDirtyModel = true;
break;
case SvListAction::RESORTING:
break;
diff --git a/vcl/source/treelist/treelistbox.cxx b/vcl/source/treelist/treelistbox.cxx
index fd74946bd9ee..818c6481c0e5 100644
--- a/vcl/source/treelist/treelistbox.cxx
+++ b/vcl/source/treelist/treelistbox.cxx
@@ -417,7 +417,6 @@ SvTreeListBox::SvTreeListBox(vcl::Window* pParent, WinBits nWinStyle) :
pImpl->SetModel( pModel.get() );
SetSublistOpenWithLeftRight();
- m_bDirtyModel = false;
}
void SvTreeListBox::Clear()