diff options
author | Guillaume Poussel <gpoussel@gmail.com> | 2011-03-04 00:11:22 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2011-03-04 19:40:06 +0100 |
commit | 76d93f3b5b699a8b31968375d78a37ddeafc4c24 (patch) | |
tree | 25ead6e6a3b7d539c9cc38b3a956dae35018138c /xmloff | |
parent | 2feb4340b65b53c9d3b23d39461f870d8c3d4978 (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.cxx | 1 | ||||
-rw-r--r-- | xmloff/source/forms/elementexport.cxx | 8 | ||||
-rw-r--r-- | xmloff/source/forms/elementimport.cxx | 1 |
3 files changed, 4 insertions, 6 deletions
diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx index 7e01bb163c25..a3d62e960da2 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 31aeb7521daa..2142b2ee5b5e 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 fbba4145b19b..3ab4a9f6506e 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; |