summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@libreoffice.org>2019-01-12 12:04:04 +0100
committerBjörn Michaelsen <bjoern.michaelsen@libreoffice.org>2019-01-12 13:09:01 +0100
commit18bb85aa303c17b7705a9ccb0dd3d76673a1955e (patch)
treec57334b8aece87f5779c046d08ff46725ea2fb90 /include/svl
parentead0a04e413018f94a307a1b621e53a5f4d25a70 (diff)
make SwFormat a ::sw::BroadcastingModify
- clean up SwSection..Hint: Lazily reusing the Dying HintId is evil - switch the SwChartDataSequence to SvtListener - add some description to RuntimeException Change-Id: I897a63030f207cabe4d1ba7de0c25c6c581ffd1f Reviewed-on: https://gerrit.libreoffice.org/65816 Tested-by: Jenkins Reviewed-by: Björn Michaelsen <bjoern.michaelsen@libreoffice.org>
Diffstat (limited to 'include/svl')
-rw-r--r--include/svl/hint.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/svl/hint.hxx b/include/svl/hint.hxx
index 9091e2de4336..98d0ca81de55 100644
--- a/include/svl/hint.hxx
+++ b/include/svl/hint.hxx
@@ -108,9 +108,10 @@ enum class SfxHintId {
// STARMATH
MathFormatChanged,
-// SW
+// Sw
SwDrawViewsCreated,
SwSplitNodeOperation,
+ SwSectionFrameMoveAndDelete,
};
template< typename charT, typename traits >
@@ -188,6 +189,7 @@ inline std::basic_ostream<charT, traits> & operator <<(
case SfxHintId::MathFormatChanged: return stream << "MathFormatChanged";
case SfxHintId::SwDrawViewsCreated: return stream << "SwDrawViewsCreated";
case SfxHintId::SwSplitNodeOperation: return stream << "SwSplitNodeOperation";
+ case SfxHintId::SwSectionFrameMoveAndDelete: return stream << "SwSectionFrameMoveAndDelete";
default: return stream << "unk(" << std::to_string(int(id)) << ")";
}
}