summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-02 08:39:03 +0200
committerNoel Grandin <noel@peralex.com>2014-10-02 08:39:38 +0200
commit26cb920cf04f152e767377223d80c57ee6f3fefb (patch)
treea5d1a17b050f5d1cc8fcf391851aeb1d3e9dab72
parent04882a0a0939ce79d3e190504f39a81257cd4227 (diff)
fix for older compiler, doesn't like <::
Change-Id: I2d05af506ae38ec3e61c9b6afaf2b39521067005
-rw-r--r--sfx2/source/control/unoctitm.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx
index 57416d7525a5..b9b012af2693 100644
--- a/sfx2/source/control/unoctitm.cxx
+++ b/sfx2/source/control/unoctitm.cxx
@@ -919,7 +919,7 @@ void SfxDispatchController_Impl::StateChanged( sal_uInt16 nSID, SfxItemState eSt
{
try
{
- static_cast<::com::sun::star::frame::XStatusListener *>(aIt.next())->statusChanged( aEvent );
+ static_cast< ::com::sun::star::frame::XStatusListener *>(aIt.next())->statusChanged( aEvent );
}
catch (const ::com::sun::star::uno::RuntimeException&)
{