diff options
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/editeng/impedit5.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editeng/source/editeng/impedit5.cxx b/editeng/source/editeng/impedit5.cxx index 1b019a770d50..2a822cb0322f 100644 --- a/editeng/source/editeng/impedit5.cxx +++ b/editeng/source/editeng/impedit5.cxx @@ -162,13 +162,13 @@ void ImpEditEngine::Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) if ( pStyle ) { if ( ( nId == SFX_HINT_DYING ) || - ( nId == SFX_STYLESHEET_INDESTRUCTION ) || - ( nId == SFX_STYLESHEET_ERASED ) ) + ( nId == SfxStyleSheetHintId::INDESTRUCTION ) || + ( nId == SfxStyleSheetHintId::ERASED ) ) { RemoveStyleFromParagraphs( pStyle ); } else if ( ( nId == SFX_HINT_DATACHANGED ) || - ( nId == SFX_STYLESHEET_MODIFIED ) ) + ( nId == SfxStyleSheetHintId::MODIFIED ) ) { UpdateParagraphsWithStyleSheet( pStyle ); } |