summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmiliano Vavassori <syntaxerrormmm@libreoffice.org>2020-02-04 11:16:33 +0100
committerMichael Meeks <michael.meeks@collabora.com>2020-02-04 14:18:15 +0100
commit83c8f77225348bd2b620a5c937a6c5da1cea8b1d (patch)
tree911bbc061658f6465d4fd1da4593976300b7cc70
parente49cd2c253fe1d292ae3f9212a805cdace77b174 (diff)
Remove unused maAsynchronousDeckSwitch.
Change-Id: Icad8aa0f6ff9897b08e057856b3af981b19532df Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87960 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Jenkins
-rw-r--r--include/sfx2/sidebar/SidebarController.hxx1
-rw-r--r--sfx2/source/sidebar/SidebarController.cxx7
2 files changed, 0 insertions, 8 deletions
diff --git a/include/sfx2/sidebar/SidebarController.hxx b/include/sfx2/sidebar/SidebarController.hxx
index abc122faa709..66959b8a0d50 100644
--- a/include/sfx2/sidebar/SidebarController.hxx
+++ b/include/sfx2/sidebar/SidebarController.hxx
@@ -188,7 +188,6 @@ private:
OUString msCurrentDeckId;
AsynchronousCall maPropertyChangeForwarder;
AsynchronousCall maContextChangeUpdate;
- AsynchronousCall maAsynchronousDeckSwitch;
/** Two flags control whether the deck is displayed or if only the
tab bar remains visible.
diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx
index 9ce9193fa6f3..462b17051b06 100644
--- a/sfx2/source/sidebar/SidebarController.cxx
+++ b/sfx2/source/sidebar/SidebarController.cxx
@@ -138,7 +138,6 @@ SidebarController::SidebarController (
msCurrentDeckId(gsDefaultDeckId),
maPropertyChangeForwarder([this](){ return this->BroadcastPropertyChange(); }),
maContextChangeUpdate([this](){ return this->UpdateConfigurations(); }),
- maAsynchronousDeckSwitch(),
mbIsDeckRequestedOpen(),
mbIsDeckOpen(),
mbFloatingDeckClosed(!pParentWindow->IsFloatingMode()),
@@ -304,8 +303,6 @@ void SAL_CALL SidebarController::disposing()
static_cast<css::beans::XPropertyChangeListener*>(this));
maContextChangeUpdate.CancelRequest();
- maAsynchronousDeckSwitch.CancelRequest();
-
}
void SAL_CALL SidebarController::notifyContextChangeEvent (const css::ui::ContextChangeEventObject& rEvent)
@@ -321,7 +318,6 @@ void SAL_CALL SidebarController::notifyContextChangeEvent (const css::ui::Contex
if (maRequestedContext != maCurrentContext)
{
mxCurrentController.set(rEvent.Source, css::uno::UNO_QUERY);
- maAsynchronousDeckSwitch.CancelRequest();
maContextChangeUpdate.RequestCall();
// TODO: this call is redundant but mandatory for unit test to update context on document loading
UpdateConfigurations();
@@ -353,7 +349,6 @@ void SAL_CALL SidebarController::statusChanged (const css::frame::FeatureStateEv
SwitchToDefaultDeck();
mnRequestedForceFlags |= SwitchFlag_ForceSwitch;
- maAsynchronousDeckSwitch.CancelRequest();
maContextChangeUpdate.RequestCall();
}
}
@@ -494,7 +489,6 @@ void SidebarController::SyncUpdate()
{
maPropertyChangeForwarder.Sync();
maContextChangeUpdate.Sync();
- maAsynchronousDeckSwitch.Sync();
}
void SidebarController::UpdateConfigurations()
@@ -1000,7 +994,6 @@ IMPL_LINK(SidebarController, WindowEventHandler, VclWindowEvent&, rEvent, void)
UpdateTitleBarIcons();
mpParentWindow->Invalidate();
mnRequestedForceFlags |= SwitchFlag_ForceNewDeck | SwitchFlag_ForceNewPanels;
- maAsynchronousDeckSwitch.CancelRequest();
maContextChangeUpdate.RequestCall();
break;