summaryrefslogtreecommitdiffstats
path: root/svx/source/editeng/editdoc.cxx
diff options
context:
space:
mode:
authorMalte Timmermann <mt@openoffice.org>2000-12-04 12:05:30 +0000
committerMalte Timmermann <mt@openoffice.org>2000-12-04 12:05:30 +0000
commit7d8533d82b1ff0d2283a9973d68b540a7ed9bd78 (patch)
tree159d52b8934d646270a1479f949f4c8093638973 /svx/source/editeng/editdoc.cxx
parentParse error linux compiler (diff)
downloadcore-7d8533d82b1ff0d2283a9973d68b540a7ed9bd78.tar.gz
core-7d8533d82b1ff0d2283a9973d68b540a7ed9bd78.zip
#81145# EditCharAttribEmphasisMark
Diffstat (limited to 'svx/source/editeng/editdoc.cxx')
-rw-r--r--svx/source/editeng/editdoc.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/svx/source/editeng/editdoc.cxx b/svx/source/editeng/editdoc.cxx
index ab9b55f01fea..6df8e7f38719 100644
--- a/svx/source/editeng/editdoc.cxx
+++ b/svx/source/editeng/editdoc.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: editdoc.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: mt $ $Date: 2000-11-30 08:45:07 $
+ * last change: $Author: mt $ $Date: 2000-12-04 13:05:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -80,6 +80,7 @@
#include <akrnitem.hxx>
#include <cscoitem.hxx>
#include <langitem.hxx>
+#include <emphitem.hxx>
#include <editdoc.hxx>
#include <editdbg.hxx>
@@ -340,6 +341,11 @@ EditCharAttrib* MakeCharAttrib( SfxItemPool& rPool, const SfxPoolItem& rAttr, US
pNew = new EditCharAttribUnderline( (const SvxUnderlineItem&)rNew, nS, nE );
}
break;
+ case EE_CHAR_EMPHASISMARK:
+ {
+ pNew = new EditCharAttribEmphasisMark( (const SvxEmphasisMarkItem&)rNew, nS, nE );
+ }
+ break;
case EE_CHAR_STRIKEOUT:
{
pNew = new EditCharAttribStrikeout( (const SvxCrossedOutItem&)rNew, nS, nE );