summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorJúlio Hoffimann <julio.hoffimann@gmail.com>2011-04-16 22:42:13 -0300
committerCédric Bosdonnat <cedricbosdo@openoffice.org>2011-04-18 16:43:16 +0200
commit4f51d1b7bb581607afe1427f40d432305617e856 (patch)
tree2452ab2a812f85ab082d30189d97dd3483855e90 /starmath
parente1e2228306dd3ed6460198729dd4d3f201ee0925 (diff)
all bogus comments removed keeping the indentation
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/node.cxx2
-rw-r--r--starmath/source/unomodel.cxx10
2 files changed, 6 insertions, 6 deletions
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx
index 0f1c44b38307..986a8011db04 100644
--- a/starmath/source/node.cxx
+++ b/starmath/source/node.cxx
@@ -859,7 +859,7 @@ void SmTableNode::Arrange(const OutputDevice &rDev, const SmFormat &rFormat)
ExtendBy(rNodeRect, nSize > 1 ? RCP_NONE : RCP_ARG);
}
}
- // --> 4.7.2010 #i972#
+ // #i972#
if (HasBaseline())
nFormulaBaseline = GetBaseline();
else
diff --git a/starmath/source/unomodel.cxx b/starmath/source/unomodel.cxx
index d3d41c36ee40..c48644e2d95f 100644
--- a/starmath/source/unomodel.cxx
+++ b/starmath/source/unomodel.cxx
@@ -303,10 +303,10 @@ PropertySetInfo * lcl_createModelPropertyInfo ()
{ RTL_CONSTASCII_STRINGPARAM( "Symbols" ), HANDLE_SYMBOLS , &::getCppuType((const Sequence < SymbolDescriptor > *)0), PROPERTY_NONE, 0 },
{ RTL_CONSTASCII_STRINGPARAM( "UserDefinedSymbolsInUse" ), HANDLE_USED_SYMBOLS , &::getCppuType((const Sequence < SymbolDescriptor > *)0), PropertyAttribute::READONLY, 0 },
{ RTL_CONSTASCII_STRINGPARAM( "TopMargin" ), HANDLE_TOP_MARGIN , &::getCppuType((const sal_Int16*)0), PROPERTY_NONE, DIS_TOPSPACE },
- // --> PB 2004-08-25 #i33095# Security Options
+ // #i33095# Security Options
{ RTL_CONSTASCII_STRINGPARAM( "LoadReadonly" ), HANDLE_LOAD_READONLY, &::getBooleanCppuType(), PROPERTY_NONE, 0 },
// <--
- // --> 3.7.2010 #i972#
+ // #i972#
{ RTL_CONSTASCII_STRINGPARAM( "BaseLine"), HANDLE_BASELINE, &::getCppuType((const sal_Int16*)0), PROPERTY_NONE, 0},
// <--
{ NULL, 0, 0, NULL, 0, 0 }
@@ -709,7 +709,7 @@ void SmModel::_setPropertyValues(const PropertyMapEntry** ppEntries, const Any*
throw IllegalArgumentException();
}
break;
- // --> PB 2004-08-25 #i33095# Security Options
+ // #i33095# Security Options
case HANDLE_LOAD_READONLY :
{
if ( (*pValues).getValueType() != ::getBooleanCppuType() )
@@ -927,14 +927,14 @@ void SmModel::_getPropertyValues( const PropertyMapEntry **ppEntries, Any *pValu
case HANDLE_RUNTIME_UID:
*pValue <<= getRuntimeUID();
break;
- // --> PB 2004-08-25 #i33095# Security Options
+ // #i33095# Security Options
case HANDLE_LOAD_READONLY :
{
*pValue <<= pDocSh->IsLoadReadonly();
break;
}
// <--
- // --> 3.7.2010 #i972#
+ // #i972#
case HANDLE_BASELINE:
{
if ( !pDocSh->pTree )