remove unused ModelSaved enumerator from SdrHintKind enum

Change-Id: I0a236705efdcbc5f44cad8517f7f8f80d326934d
Reviewed-on: https://gerrit.libreoffice.org/34209
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
Noel Grandin
2017-02-13 13:43:09 +02:00
parent 45090bee25
commit df49f966fa
2 changed files with 0 additions and 7 deletions

View File

@@ -114,7 +114,6 @@ enum class SdrHintKind
RefDeviceChange, // RefDevice changed RefDeviceChange, // RefDevice changed
DefaultTabChange, // Default tabulator width changed DefaultTabChange, // Default tabulator width changed
DefaultFontHeightChange, // Default FontHeight changed DefaultFontHeightChange, // Default FontHeight changed
ModelSaved, // Document was saved
SwitchToPage, // #94278# UNDO/REDO at an object evtl. on another page SwitchToPage, // #94278# UNDO/REDO at an object evtl. on another page
BeginEdit, // Is called after the object has entered text edit mode BeginEdit, // Is called after the object has entered text edit mode
EndEdit // Is called after the object has left text edit mode EndEdit // Is called after the object has left text edit mode

View File

@@ -227,12 +227,6 @@ void SdrObjEditView::Notify(SfxBroadcaster& rBC, const SfxHint& rHint)
if (eKind==SdrHintKind::DefaultTabChange) { if (eKind==SdrHintKind::DefaultTabChange) {
pTextEditOutliner->SetDefTab(mpModel->GetDefaultTabulator()); pTextEditOutliner->SetDefTab(mpModel->GetDefaultTabulator());
} }
if (eKind==SdrHintKind::DefaultFontHeightChange) {
}
if (eKind==SdrHintKind::ModelSaved) {
pTextEditOutliner->ClearModifyFlag();
}
} }
} }
} }