summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorGuillaume Poussel <gpoussel@gmail.com>2011-03-04 00:11:22 +0100
committerLuboš Luňák <l.lunak@suse.cz>2011-03-04 19:40:06 +0100
commitf848ac8f44b7be3f9488a8fe94d309a4bca95364 (patch)
tree7dbd4b0a2333a3f5a6e6e392d46e8521f1af6105 /xmloff
parent73c529b72c2b7d91e5b1e8938b5c59e6e72299e8 (diff)
Remove bogus and useless comments in libs-core.
Signed-off-by: Luboš Luňák <l.lunak@suse.cz>
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/draw/shapeexport.cxx1
-rw-r--r--xmloff/source/forms/elementexport.cxx8
-rw-r--r--xmloff/source/forms/elementimport.cxx1
3 files changed, 4 insertions, 6 deletions
diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx
index d6013a1fd7..4790caf63e 100644
--- a/xmloff/source/draw/shapeexport.cxx
+++ b/xmloff/source/draw/shapeexport.cxx
@@ -397,7 +397,6 @@ void XMLShapeExport::collectShapeAutoStyles(const uno::Reference< drawing::XShap
// * defaults for style properties are not written, but we need to write the "left",
// because we need to distiguish this "left" from the case where not align attribute
// is present which means "void"
- // 102407 - 2002-11-01 - fs@openoffice.org
static const ::rtl::OUString s_sParaAdjustPropertyName( RTL_CONSTASCII_USTRINGPARAM( "ParaAdjust" ) );
if ( xPropSetInfo->hasPropertyByName( s_sParaAdjustPropertyName )
&& ( beans::PropertyState_DEFAULT_VALUE == xPropState->getPropertyState( s_sParaAdjustPropertyName ) )
diff --git a/xmloff/source/forms/elementexport.cxx b/xmloff/source/forms/elementexport.cxx
index 136e781f4f..246053a1d9 100644
--- a/xmloff/source/forms/elementexport.cxx
+++ b/xmloff/source/forms/elementexport.cxx
@@ -385,7 +385,7 @@ namespace xmloff
// (the strikeout type), the latter hasn't. But, when the CharCrossedOut is exported and
// later on imported, it overwrites anything which has previously been imported for
// CharStrikeout.
- // 2004-04-14 - #i27729# - fs@openoffice.org
+ // #i27729#
exportedProperty( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "CharCrossedOut" ) ) );
}
@@ -414,7 +414,7 @@ namespace xmloff
case LISTBOX:
// don't export the list entries if the are not provided by the user, but obtained implicitly
// from other sources
- // #i26944# - 2004-05-17 - fs@openoffice.org
+ // #i26944#
if ( controlHasUserSuppliedListEntries() )
exportListSourceAsElements();
break;
@@ -432,7 +432,7 @@ namespace xmloff
// don't export the list entries if the are not provided by the user, but obtained implicitly
// from other sources
- // #i26944# - 2004-05-17 - fs@openoffice.org
+ // #i26944#
if ( controlHasUserSuppliedListEntries() )
{
// get the item list
@@ -743,7 +743,7 @@ namespace xmloff
if (pCurrentValuePropertyName && (CCA_CURRENT_VALUE & m_nIncludeCommon))
{
// don't export the current-value if this value originates from a data binding
- // #i26944# - 2004-05-17 - fs@openoffice.org
+ // #i26944#
if ( controlHasActiveDataBinding() )
exportedProperty( ::rtl::OUString::createFromAscii( pCurrentValuePropertyName ) );
else
diff --git a/xmloff/source/forms/elementimport.cxx b/xmloff/source/forms/elementimport.cxx
index 4ae6b16046..2322e5d386 100644
--- a/xmloff/source/forms/elementimport.cxx
+++ b/xmloff/source/forms/elementimport.cxx
@@ -824,7 +824,6 @@ namespace xmloff
// In case the Text is not part of the property sequence (or occurs _before_
// the DefaultText, which can happen for other value/default-value property names),
// this means that the Text (the value property) is incorrectly imported.
- // #102475# - 04.09.2002 - fs@openoffice.org
sal_Bool bRestoreValuePropertyValue = sal_False;
Any aValuePropertyValue;