diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-10 18:26:53 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-11 08:41:09 +0200 |
commit | 578cd010f504e4261c908c5bfbb46e035e22397f (patch) | |
tree | 3fbc3a2f3ede04624391660841f57bd478cca180 /sfx2 | |
parent | f18158d76c0151feb9cc731e4148de5f8604f704 (diff) |
Use valid UNOIDL identifiers in css.frame.Status.ItemState
These are present since OOo 2.0, but are unpublished and appear to be rarely
used, so changing them is hopefully OK.
Change-Id: I144eceb074cfdd91777f4c940cbfbc0dd73d4347
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/control/unoctitm.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx index f9389bd1f3ac..618ad66c5770 100644 --- a/sfx2/source/control/unoctitm.cxx +++ b/sfx2/source/control/unoctitm.cxx @@ -813,7 +813,7 @@ void SAL_CALL SfxDispatchController_Impl::addStatusListener(const ::com::sun::st { // Use special uno struct to transport don't care state ::com::sun::star::frame::status::ItemStatus aItemStatus; - aItemStatus.State = ::com::sun::star::frame::status::ItemState::dont_care; + aItemStatus.State = ::com::sun::star::frame::status::ItemState::DONT_CARE; aState = makeAny( aItemStatus ); } @@ -902,7 +902,7 @@ void SfxDispatchController_Impl::StateChanged( sal_uInt16 nSID, SfxItemState eSt { // Use special uno struct to transport don't care state ::com::sun::star::frame::status::ItemStatus aItemStatus; - aItemStatus.State = ::com::sun::star::frame::status::ItemState::dont_care; + aItemStatus.State = ::com::sun::star::frame::status::ItemState::DONT_CARE; aState = makeAny( aItemStatus ); } |