summaryrefslogtreecommitdiff
path: root/xmloff/source/style/FillStyleContext.cxx
diff options
context:
space:
mode:
authorChristian Lippka <cl@openoffice.org>2002-05-23 13:15:35 +0000
committerChristian Lippka <cl@openoffice.org>2002-05-23 13:15:35 +0000
commit771408430c1e95044a862864658bfd9ca23efa18 (patch)
treebfd768e84a4296ffd24deae8b047a0076e6b2f05 /xmloff/source/style/FillStyleContext.cxx
parent11e856919ca472fb4af96de3d6f56af7a34409db (diff)
#95838# added transient styles
Diffstat (limited to 'xmloff/source/style/FillStyleContext.cxx')
-rw-r--r--xmloff/source/style/FillStyleContext.cxx35
1 files changed, 33 insertions, 2 deletions
diff --git a/xmloff/source/style/FillStyleContext.cxx b/xmloff/source/style/FillStyleContext.cxx
index 696c6050ae25..ab4d64d6e814 100644
--- a/xmloff/source/style/FillStyleContext.cxx
+++ b/xmloff/source/style/FillStyleContext.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FillStyleContext.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: dvo $ $Date: 2001-10-19 18:43:58 $
+ * last change: $Author: cl $ $Date: 2002-05-23 14:15:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -153,6 +153,11 @@ void XMLGradientStyleContext::EndElement()
{}
}
+BOOL XMLGradientStyleContext::IsTransient() const
+{
+ return sal_True;
+}
+
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
@@ -194,6 +199,11 @@ void XMLHatchStyleContext::EndElement()
{}
}
+BOOL XMLHatchStyleContext::IsTransient() const
+{
+ return sal_True;
+}
+
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
@@ -269,6 +279,12 @@ void XMLBitmapStyleContext::EndElement()
{}
}
+BOOL XMLBitmapStyleContext::IsTransient() const
+{
+ return sal_True;
+}
+
+
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
@@ -310,6 +326,11 @@ void XMLTransGradientStyleContext::EndElement()
{}
}
+BOOL XMLTransGradientStyleContext::IsTransient() const
+{
+ return sal_True;
+}
+
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
@@ -351,6 +372,11 @@ void XMLMarkerStyleContext::EndElement()
{}
}
+BOOL XMLMarkerStyleContext::IsTransient() const
+{
+ return sal_True;
+}
+
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
@@ -391,3 +417,8 @@ void XMLDashStyleContext::EndElement()
catch( container::ElementExistException& )
{}
}
+
+BOOL XMLDashStyleContext::IsTransient() const
+{
+ return sal_True;
+}