summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorHerbert Dürr <hdu@apache.org>2014-01-06 14:10:06 +0000
committerHerbert Dürr <hdu@apache.org>2014-01-06 14:10:06 +0000
commitc31988351c10e9f3fd783730d95da34efd52c153 (patch)
tree03d146162a361043f12e1448245e4e93c31b61a9 /sd
parent631b6b53afe97f22405f5239e7d13422622f980b (diff)
#i123817# prepare codebase for updating to boost 1.55
Notes
Notes: merged as: 9e77ddcd19d328c54ed0fb3ebb83f585b85f0249
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/accessibility/AccessibleSlideSorterView.cxx2
-rw-r--r--sd/source/ui/tools/PreviewRenderer.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/accessibility/AccessibleSlideSorterView.cxx b/sd/source/ui/accessibility/AccessibleSlideSorterView.cxx
index d566c89f50c6..16c52338e8d6 100644
--- a/sd/source/ui/accessibility/AccessibleSlideSorterView.cxx
+++ b/sd/source/ui/accessibility/AccessibleSlideSorterView.cxx
@@ -166,7 +166,7 @@ void SAL_CALL AccessibleSlideSorterView::disposing (void)
comphelper::AccessibleEventNotifier::revokeClientNotifyDisposing( mnClientId, *this );
mnClientId = 0;
}
- mpImpl.reset(NULL);
+ mpImpl.reset();
}
diff --git a/sd/source/ui/tools/PreviewRenderer.cxx b/sd/source/ui/tools/PreviewRenderer.cxx
index 2c85e5059d56..d9cdeaa82718 100644
--- a/sd/source/ui/tools/PreviewRenderer.cxx
+++ b/sd/source/ui/tools/PreviewRenderer.cxx
@@ -456,7 +456,7 @@ void PreviewRenderer::ProvideView (DrawDocShell* pDocShell)
if (pDocShell != mpDocShellOfView)
{
// Destroy the view that is connected to the current doc shell.
- mpView.reset (NULL);
+ mpView.reset();
// Switch our attention, i.e. listening for DYING events, to
// the new doc shell.
@@ -554,7 +554,7 @@ void PreviewRenderer::Notify(SfxBroadcaster&, const SfxHint& rHint)
// has to be destroyed as well. The next call to
// ProvideView will create a new one (for another
// doc shell, of course.)
- mpView.reset (NULL);
+ mpView.reset();
mpDocShellOfView = NULL;
}
}