diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-07-08 21:10:23 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-07-12 18:56:48 +0200 |
commit | bde2fde07a00c89a27c13cd7f5e6fe666ea73030 (patch) | |
tree | 81760030831d87e44d2a51ab05724f981c0d55cc | |
parent | efd13b27a4d5108645307b54d150c7d3fec87dcc (diff) |
fix indentation
Change-Id: I90426772f59db1bdc695bb9a411eaaee19655ce7
-rw-r--r-- | sfx2/source/sidebar/SidebarController.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx index 61492cea88c7..b5865c40cbbc 100644 --- a/sfx2/source/sidebar/SidebarController.cxx +++ b/sfx2/source/sidebar/SidebarController.cxx @@ -205,21 +205,21 @@ void SAL_CALL SidebarController::disposing() // clear decks ResourceManager::DeckContextDescriptorContainer aDecks; - mpResourceManager->GetMatchingDecks ( + mpResourceManager->GetMatchingDecks ( aDecks, GetCurrentContext(), IsDocumentReadOnly(), mxFrame->getController()); - for (ResourceManager::DeckContextDescriptorContainer::const_iterator + for (ResourceManager::DeckContextDescriptorContainer::const_iterator iDeck(aDecks.begin()), iEnd(aDecks.end()); iDeck!=iEnd; ++iDeck) - { - const DeckDescriptor* deckDesc = mpResourceManager->GetDeckDescriptor(iDeck->msId); - VclPtr<Deck> aDeck = deckDesc->mpDeck; - if (aDeck) - aDeck.disposeAndClear(); - } + { + const DeckDescriptor* deckDesc = mpResourceManager->GetDeckDescriptor(iDeck->msId); + VclPtr<Deck> aDeck = deckDesc->mpDeck; + if (aDeck) + aDeck.disposeAndClear(); + } SidebarControllerContainer::iterator iEntry (maSidebarControllerContainer.find(mxFrame->getController())); if (iEntry != maSidebarControllerContainer.end()) |