summaryrefslogtreecommitdiff
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
commit76d93f3b5b699a8b31968375d78a37ddeafc4c24 (patch)
tree25ead6e6a3b7d539c9cc38b3a956dae35018138c
parent2feb4340b65b53c9d3b23d39461f870d8c3d4978 (diff)
Remove bogus and useless comments in libs-core.
Signed-off-by: Luboš Luňák <l.lunak@suse.cz>
-rw-r--r--connectivity/source/commontools/conncleanup.cxx2
-rw-r--r--connectivity/source/sdbcx/VCollection.cxx1
-rw-r--r--fpicker/source/office/iodlg.cxx4
-rw-r--r--scripting/java/org/openoffice/idesupport/LocalOffice.java2
-rw-r--r--scripting/java/org/openoffice/idesupport/localoffice/LocalOfficeImpl.java2
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystem.java2
-rw-r--r--scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystemBeanInfo.java2
-rw-r--r--sfx2/inc/sfx2/mnumgr.hxx2
-rwxr-xr-xsvx/inc/svx/dialogs.hrc1
-rw-r--r--svx/source/accessibility/AccessibleControlShape.cxx3
-rw-r--r--svx/source/fmcomp/fmgridif.cxx1
-rw-r--r--svx/source/fmcomp/gridcell.cxx1
-rw-r--r--svx/source/form/fmPropBrw.cxx5
-rw-r--r--svx/source/form/fmshell.cxx1
-rw-r--r--svx/source/form/fmshimp.cxx2
-rw-r--r--svx/source/form/fmsrcimp.cxx2
-rw-r--r--svx/source/form/fmundo.cxx2
-rw-r--r--svx/source/form/fmview.cxx2
-rw-r--r--svx/source/form/formcontroller.cxx1
-rw-r--r--svx/source/form/navigatortree.cxx4
-rw-r--r--svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx6
-rw-r--r--svx/source/svdraw/svdouno.cxx1
-rw-r--r--xmlhelp/util/main_transform.xsl1
-rw-r--r--xmloff/source/draw/shapeexport.cxx1
-rw-r--r--xmloff/source/forms/elementexport.cxx8
-rw-r--r--xmloff/source/forms/elementimport.cxx1
26 files changed, 14 insertions, 46 deletions
diff --git a/connectivity/source/commontools/conncleanup.cxx b/connectivity/source/commontools/conncleanup.cxx
index 6c6516f9fd1f..acf6324a10f4 100644
--- a/connectivity/source/commontools/conncleanup.cxx
+++ b/connectivity/source/commontools/conncleanup.cxx
@@ -182,8 +182,6 @@ namespace dbtools
// check this here.
//
// Yes, this is a HACK :(
- //
- // 94407 - 08.11.2001 - fs@openoffice.org
if ( xNewConnection.get() != m_xOriginalConnection.get() )
{
#if OSL_DEBUG_LEVEL > 0
diff --git a/connectivity/source/sdbcx/VCollection.cxx b/connectivity/source/sdbcx/VCollection.cxx
index 61ec574386e0..b620f398cc84 100644
--- a/connectivity/source/sdbcx/VCollection.cxx
+++ b/connectivity/source/sdbcx/VCollection.cxx
@@ -107,7 +107,6 @@ namespace
// during the swap. If we would not do this, the UStringMixLess instance which is used would be
// default constructed (instead of being constructed from the same instance in m_aNameMap), and
// it's case-sensitive flag would have an unpredictable value.
- // 2002-01-09 - #106589# - fs@openoffice.org
}
// -----------------------------------------------------------------------------
virtual void clear()
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx
index 44a4b5409707..478d4c9ac405 100644
--- a/fpicker/source/office/iodlg.cxx
+++ b/fpicker/source/office/iodlg.cxx
@@ -1162,8 +1162,8 @@ IMPL_STATIC_LINK( SvtFileDialog, OpenHdl_Impl, void*, pVoid )
&& !( FILEDLG_MODE_SAVE == pThis->_pImp->_eMode // we're saving a file
&& pThis->_pFileView->GetSelectionCount() // there is a selected file in the file view -> it will later on
) // (in SvtFileDialog::GetPathList) be taken as file to save to
- // (#114818# - 2004-03-17 - fs@openoffice.org)
- && FILEDLG_MODE_OPEN != pThis->_pImp->_eMode // pb: #i83408# don't append extension on open
+
+ && FILEDLG_MODE_OPEN != pThis->_pImp->_eMode // #i83408# don't append extension on open
)
{
// check extension and append the default extension if necessary
diff --git a/scripting/java/org/openoffice/idesupport/LocalOffice.java b/scripting/java/org/openoffice/idesupport/LocalOffice.java
index 73f319a87269..1bfeca4a8663 100644
--- a/scripting/java/org/openoffice/idesupport/LocalOffice.java
+++ b/scripting/java/org/openoffice/idesupport/LocalOffice.java
@@ -38,8 +38,6 @@ import java.util.Vector;
* releated functionality of the locally running office. The
* office has to be started with options appropriate for establishing
* local connection.
- *
- * @author misha <misha@openoffice.org>
*/
public class LocalOffice
{
diff --git a/scripting/java/org/openoffice/idesupport/localoffice/LocalOfficeImpl.java b/scripting/java/org/openoffice/idesupport/localoffice/LocalOfficeImpl.java
index 491aa61cb052..fa42a7be1f1b 100644
--- a/scripting/java/org/openoffice/idesupport/localoffice/LocalOfficeImpl.java
+++ b/scripting/java/org/openoffice/idesupport/localoffice/LocalOfficeImpl.java
@@ -51,8 +51,6 @@ import org.openoffice.idesupport.LocalOffice;
* get access to some scripting framework releated functionality
* of the locally running office. The office has to be started
* with options appropriate for establishing local connection.
- *
- * @author misha <misha@openoffice.org>
*/
public final class LocalOfficeImpl
extends LocalOffice
diff --git a/scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystem.java b/scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystem.java
index 795da90df74f..cd240cdae0f6 100644
--- a/scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystem.java
+++ b/scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystem.java
@@ -49,8 +49,6 @@ import org.openide.util.NbBundle;
/**
* OpenOffice.org Document filesystem.
- *
- * @author misha <misha@openoffice.org>
*/
public class OpenOfficeDocFileSystem
extends AbstractFileSystem
diff --git a/scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystemBeanInfo.java b/scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystemBeanInfo.java
index c282a2fa2ad7..5a589a2631ba 100644
--- a/scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystemBeanInfo.java
+++ b/scripting/java/org/openoffice/netbeans/modules/office/filesystem/OpenOfficeDocFileSystemBeanInfo.java
@@ -38,8 +38,6 @@ import org.openide.util.Utilities;
/**
* Description of the OpenOffice.org Document filesystem.
- *
- * @author misha <misha@openoffice.org>
*/
public class OpenOfficeDocFileSystemBeanInfo
extends SimpleBeanInfo
diff --git a/sfx2/inc/sfx2/mnumgr.hxx b/sfx2/inc/sfx2/mnumgr.hxx
index 41c740ae2127..1ca5aa9d824e 100644
--- a/sfx2/inc/sfx2/mnumgr.hxx
+++ b/sfx2/inc/sfx2/mnumgr.hxx
@@ -116,7 +116,6 @@ public:
// @deprecated!!
// Don't use this method any longer. The whole class will be removed in the future.
// Changing code which relies on Popup would need much more effort.
- // Please contact cd@openoffice.org if you have questions or need help
static SfxPopupMenuManager* Popup( const ResId& rResId, SfxViewFrame* pFrame,const Point& rPoint, Window* pWindow );
USHORT Execute( const Point& rPos, Window *pWindow );
@@ -126,7 +125,6 @@ public:
// @deprecated (start)!!
// Don't use these methods any longer. The whole class will be removed in the future.
// Changing code which relies on these methods would need much more effort!
- // Please contact cd@openoffice.org if you have questions or need help
void StartInsert();
void EndInsert();
void CheckItem( USHORT, BOOL );
diff --git a/svx/inc/svx/dialogs.hrc b/svx/inc/svx/dialogs.hrc
index 42497fcddc33..3f59486a633f 100755
--- a/svx/inc/svx/dialogs.hrc
+++ b/svx/inc/svx/dialogs.hrc
@@ -933,7 +933,6 @@
// a dialog and a string, both with the same id)
// I suggest sticking to per-type ids instead of per-semantic ids, this is
// better maintainable (IMO), and does not waste that much ids
-// fs@openoffice.org
// ----------------------------------------------------------------------------
// "Window" resource ids
diff --git a/svx/source/accessibility/AccessibleControlShape.cxx b/svx/source/accessibility/AccessibleControlShape.cxx
index f0437b7a08e3..faedd9eaed6d 100644
--- a/svx/source/accessibility/AccessibleControlShape.cxx
+++ b/svx/source/accessibility/AccessibleControlShape.cxx
@@ -208,9 +208,6 @@ void AccessibleControlShape::Init()
// be aggregated, as by definition the proxy's ref count is exactly 1 when returned from the factory.
// Sounds better. Though this yields the problem of slightly degraded performance, it's the only solution
// I'm aware of at the moment .....
- //
- // 98750 - 30.04.2002 - fs@openoffice.org
- //
// get the control which belongs to our model (relative to our view)
const Window* pViewWindow = maShapeTreeInfo.GetWindow();
diff --git a/svx/source/fmcomp/fmgridif.cxx b/svx/source/fmcomp/fmgridif.cxx
index 77ba9da2d8ff..822c3675602f 100644
--- a/svx/source/fmcomp/fmgridif.cxx
+++ b/svx/source/fmcomp/fmgridif.cxx
@@ -2189,7 +2189,6 @@ void FmXGridPeer::dispose() throw( RuntimeException )
VCLXWindow::dispose();
// release all interceptors
- // discovered during #100312# - 2002-10-23 - fs@openoffice.org
Reference< XDispatchProviderInterceptor > xInterceptor( m_xFirstDispatchInterceptor );
m_xFirstDispatchInterceptor.clear();
while ( xInterceptor.is() )
diff --git a/svx/source/fmcomp/gridcell.cxx b/svx/source/fmcomp/gridcell.cxx
index 894f1a702cc4..26b4f1e7d447 100644
--- a/svx/source/fmcomp/gridcell.cxx
+++ b/svx/source/fmcomp/gridcell.cxx
@@ -2904,7 +2904,6 @@ void DbFilterField::Init( Window& rParent, const Reference< XRowSet >& xCursor )
DbCellControl::Init( rParent, xCursor );
// filter cells are never readonly
- // 31.07.2002 - 101584 - fs@openoffice.org
Edit* pAsEdit = dynamic_cast< Edit* >( m_pWindow );
if ( pAsEdit )
pAsEdit->SetReadOnly( sal_False );
diff --git a/svx/source/form/fmPropBrw.cxx b/svx/source/form/fmPropBrw.cxx
index 7f237e232166..aaf594fbfb71 100644
--- a/svx/source/form/fmPropBrw.cxx
+++ b/svx/source/form/fmPropBrw.cxx
@@ -238,7 +238,7 @@ FmPropBrw::FmPropBrw( const Reference< XMultiServiceFactory >& _xORB, SfxBinding
// Do *not* use |this| as container window for the frame, this would result in undefined
// responsiblity for this window (as soon as we initialize a frame with a window, the frame
// is responsible for it's life time, but |this| is controlled by the belonging SfxChildWindow)
- // #i34249# - 2004-09-27 - fs@openoffice.org
+ // #i34249#
Window* pContainerWindow = new Window( this );
pContainerWindow->Show();
m_xFrameContainerWindow = VCLUnoHelper::GetInterface ( pContainerWindow );
@@ -252,7 +252,7 @@ FmPropBrw::FmPropBrw( const Reference< XMultiServiceFactory >& _xORB, SfxBinding
// if ( xSupp.is() )
// xSupp->getFrames()->append( m_xMeAsFrame );
// Don't append frame to frame hierachy to prevent UI_DEACTIVATE messages
- // #i31834# - 2004-07-27 - cd@openoffice.org
+ // #i31834#
}
}
}
@@ -361,7 +361,6 @@ void FmPropBrw::implDetachController()
}
// we attached a frame to the controller manually, so we need to manually tell it that it's detached, too
- // 96068 - 09.01.2002 - fs@openoffice.org
if ( m_xBrowserController.is() )
m_xBrowserController->attachFrame( NULL );
diff --git a/svx/source/form/fmshell.cxx b/svx/source/form/fmshell.cxx
index 1db070d367e5..6467232fcfe3 100644
--- a/svx/source/form/fmshell.cxx
+++ b/svx/source/form/fmshell.cxx
@@ -283,7 +283,6 @@ sal_uInt16 FmFormShell::PrepareClose(sal_Bool bUI, sal_Bool bForBrowsing)
{
if ( GetImpl()->didPrepareClose() )
// we already did a PrepareClose for the current modifications of the current form
- // 2002-11-12 #104702# - fs@openoffice.org
return sal_True;
sal_Bool bResult = sal_True;
diff --git a/svx/source/form/fmshimp.cxx b/svx/source/form/fmshimp.cxx
index dc8a25c76527..5aafed8dedaa 100644
--- a/svx/source/form/fmshimp.cxx
+++ b/svx/source/form/fmshimp.cxx
@@ -955,7 +955,6 @@ void FmXFormShell::disposing()
// if we're here, then we expect that PrepareClose has been called, and thus the user
// got a chance to commit or reject any changes. So in case we're here and there
// are still uncommitted changes, the user explicitly wanted this.
- // 2002-11-11 - 104702 - fs@openoffice.org
m_pTextShell->dispose();
@@ -3794,7 +3793,6 @@ void FmXFormShell::viewDeactivated( FmFormView& _rCurrentView, sal_Bool _bDeacti
// if we have an async load operation pending for the 0-th page for this view,
// we need to cancel this
- // 103727 - 2002-09-26 - fs@openoffice.org
FmFormPage* pPage = _rCurrentView.GetCurPage();
if ( pPage )
{
diff --git a/svx/source/form/fmsrcimp.cxx b/svx/source/form/fmsrcimp.cxx
index 4bd9be0d70f2..3268199e1f7e 100644
--- a/svx/source/form/fmsrcimp.cxx
+++ b/svx/source/form/fmsrcimp.cxx
@@ -852,7 +852,7 @@ void FmSearchEngine::Init(const ::rtl::OUString& sVisibleFields)
// - a control in the form is bound to "column" - not the different case
// In such a scenario, the form and the field would work okay, but we here need to case for the different case
// explicitly
- // 2003-01-09 - #i8755# - fs@openoffice.org
+ // #i8755#
// so first of all, check if the database handles identifiers case sensitive
Reference< XConnection > xConn;
diff --git a/svx/source/form/fmundo.cxx b/svx/source/form/fmundo.cxx
index 8472a38dc8de..87e989e17065 100644
--- a/svx/source/form/fmundo.cxx
+++ b/svx/source/form/fmundo.cxx
@@ -1012,7 +1012,7 @@ void FmXUndoEnvironment::RemoveElement(const Reference< XInterface >& _rxElement
if ( !::svxform::OStaticDataAccessTools().isEmbeddedInDatabase( _rxElement ) )
// (if there is a connection in the context of the component, setting
// a new connection would be vetoed, anyway)
- // #i34196# - 2004-09-21 - fs@openoffice.org
+ // #i34196#
xFormProperties->setPropertyValue( FM_PROP_ACTIVE_CONNECTION, Any() );
}
diff --git a/svx/source/form/fmview.cxx b/svx/source/form/fmview.cxx
index b0a8ce637fc8..f2be41eefd8c 100644
--- a/svx/source/form/fmview.cxx
+++ b/svx/source/form/fmview.cxx
@@ -126,8 +126,6 @@ void FmFormView::Init()
// This means this is a newly created document. This means, we want to have it in design
// mode by default (though a newly created model returns true for GetOpenInDesignMode).
// We _want_ to have this because it makes a lot of hacks following the original fix
- // for #94595# unnecessary
- // #96399# - 2002-10-11 - fs@openoffice.org
DBG_ASSERT( !bInitDesignMode, "FmFormView::Init: doesn't the model default to FALSE anymore?" );
// if this asserts, either the on-contruction default in the model has changed (then this here
// may not be necessary anymore), or we're not dealing with a new document ....
diff --git a/svx/source/form/formcontroller.cxx b/svx/source/form/formcontroller.cxx
index c3a3f9fbd22f..ef78b4991018 100644
--- a/svx/source/form/formcontroller.cxx
+++ b/svx/source/form/formcontroller.cxx
@@ -3273,7 +3273,6 @@ void FormController::startFiltering()
Reference< XConnection > xConnection( aStaticTools.getRowSetConnection( Reference< XRowSet >( m_xModelAsIndex, UNO_QUERY ) ) );
if ( !xConnection.is() )
// nothing to do - can't filter a form which is not connected
- // 98023 - 19.03.2002 - fs@openoffice.org
return;
// stop listening for controls
diff --git a/svx/source/form/navigatortree.cxx b/svx/source/form/navigatortree.cxx
index 989c6d064fdd..93ed0edcbdb5 100644
--- a/svx/source/form/navigatortree.cxx
+++ b/svx/source/form/navigatortree.cxx
@@ -455,7 +455,7 @@ namespace svxform
aContextMenu.EnableItem( SID_FM_TAB_DIALOG, bSingleSelection && m_nFormsSelected );
// in XML forms, we don't allow for the properties of a form
- // #i36484# / 2004-11-04 /- fs@openoffice.org
+ // #i36484#
if ( pFormShell->GetImpl()->isEnhancedForm() && !m_nControlsSelected )
aContextMenu.RemoveItem( aContextMenu.GetItemPos( SID_FM_SHOW_PROPERTY_BROWSER ) );
@@ -1865,7 +1865,7 @@ namespace svxform
// start UNDO at this point. Unfortunately, this results in 2 UNDO actions, since DeleteMarked is
// creating an own one. However, if we'd move it before DeleteMarked, Writer does not really like
// this ... :(
- // 2004-07-05 - #i31038# - fs@openoffice.org
+ // #i31038#
{
// ---------------
// initialize UNDO
diff --git a/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx b/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx
index 4cd80a5d7e01..fdf372690ed8 100644
--- a/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx
+++ b/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx
@@ -1239,16 +1239,15 @@ namespace sdr { namespace contact {
_rInitialZoomNormalization
);
- // #107049# set design mode before peer is created,
+ // set design mode before peer is created,
// this is also needed for accessibility
_out_rControl.setDesignMode( _rPageView.isDesignMode() );
// adjust the initial visibility according to the visibility of the layer
- // 2003-06-03 - #110592# - fs@openoffice.org
impl_adjustControlVisibilityToLayerVisibility_throw( _out_rControl, _rUnoObject, _rPageView, false, true );
// add the control to the respective control container
- // #108327# do this last
+ // do this last
Reference< XControlContainer > xControlContainer( _rPageView.getControlContainer( _rDevice ) );
if ( xControlContainer.is() )
xControlContainer->addControl( sControlServiceName, _out_rControl.getControl() );
@@ -1518,7 +1517,6 @@ namespace sdr { namespace contact {
try
{
// if the control is part of a invisible layer, we need to explicitly hide it in alive mode
- // 2003-06-03 - #110592# - fs@openoffice.org
impl_adjustControlVisibilityToLayerVisibility_throw( false );
}
catch( const Exception& )
diff --git a/svx/source/svdraw/svdouno.cxx b/svx/source/svdraw/svdouno.cxx
index c74cae3dcb5c..c9f8fbd05cdd 100644
--- a/svx/source/svdraw/svdouno.cxx
+++ b/svx/source/svdraw/svdouno.cxx
@@ -475,7 +475,6 @@ void SdrUnoObj::NbcSetLayer( SdrLayerID _nLayer )
// (relative to a layer. Remember that the visibility of a layer is a view attribute
// - the same layer can be visible in one view, and invisible in another view, at the
// same time)
- // 2003-06-03 - #110592# - fs@openoffice.org
// collect all views in which our old layer is visible
::std::set< SdrView* > aPreviouslyVisible;
diff --git a/xmlhelp/util/main_transform.xsl b/xmlhelp/util/main_transform.xsl
index d9b6c3229696..0f5cb021f434 100644
--- a/xmlhelp/util/main_transform.xsl
+++ b/xmlhelp/util/main_transform.xsl
@@ -4,7 +4,6 @@
<!--***********************************************************************
This is the main transformation style sheet for transforming.
Only use with OOo 2.0
- Owner: fpe@openoffice.org
=========================================================================
Changes Log
May 24 2004 Created
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;