diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2017-03-21 20:09:21 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-22 06:46:10 +0000 |
commit | e9c7d259e8ed3144d4226aef7c3de351e4706b79 (patch) | |
tree | 155034670744a756c45d122652092871281c82bf /idl | |
parent | bdf41d8aeb53a298780f3633a76d71598a695bab (diff) |
create SfxDisableFlags enum
Change-Id: Ib59c7886017247977b916a8e140853fb8310582f
Reviewed-on: https://gerrit.libreoffice.org/35514
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'idl')
-rw-r--r-- | idl/source/objects/slot.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx index f5ac534ac30d..e456f5f639a5 100644 --- a/idl/source/objects/slot.cxx +++ b/idl/source/objects/slot.cxx @@ -754,7 +754,7 @@ void SvMetaSlot::WriteSlot( const OString& rShellName, sal_uInt16 nCount, rOutStm.WriteChar( ',' ) << endl; WriteTab( rOutStm, 4 ); if ( GetDisableFlags().isEmpty() ) - rOutStm.WriteCharPtr( "0" ); + rOutStm.WriteCharPtr( "SfxDisableFlags::NONE" ); else rOutStm.WriteOString( GetDisableFlags() ); |