diff options
author | Guillaume Poussel <gpoussel@gmail.com> | 2011-02-08 08:48:59 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2011-02-08 19:06:48 +0100 |
commit | 842bfb16f710a624eb48294e5410e9944160c70d (patch) | |
tree | 7c85ef2417a993c608585948eab1a4e7faeb4b1b /forms/source | |
parent | b0c96965cfc02d2beb062158483079a2e746474f (diff) |
Remove useless comments in components.
Diffstat (limited to 'forms/source')
-rw-r--r-- | forms/source/component/Button.cxx | 1 | ||||
-rw-r--r-- | forms/source/component/DatabaseForm.cxx | 5 | ||||
-rw-r--r-- | forms/source/component/FormComponent.cxx | 1 | ||||
-rw-r--r-- | forms/source/component/FormattedField.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/ImageControl.cxx | 1 | ||||
-rw-r--r-- | forms/source/component/clickableimage.cxx | 3 | ||||
-rw-r--r-- | forms/source/runtime/formoperations.cxx | 1 |
7 files changed, 1 insertions, 13 deletions
diff --git a/forms/source/component/Button.cxx b/forms/source/component/Button.cxx index da060f997052..9b0c44de98b6 100644 --- a/forms/source/component/Button.cxx +++ b/forms/source/component/Button.cxx @@ -480,7 +480,6 @@ IMPL_LINK( OButtonControl, OnClick, void*, EMPTYARG ) // catch exceptions // and catch them on a per-listener basis - if one listener fails, the others still need // to get notified - // 97676 - 21.02.2002 - fs@openoffice.org try { static_cast< XActionListener* >( aIter.next() )->actionPerformed(aEvt); diff --git a/forms/source/component/DatabaseForm.cxx b/forms/source/component/DatabaseForm.cxx index e8b75818b3d0..cd6ebeae1160 100644 --- a/forms/source/component/DatabaseForm.cxx +++ b/forms/source/component/DatabaseForm.cxx @@ -3596,15 +3596,13 @@ void SAL_CALL ODatabaseForm::moveToInsertRow() throw( SQLException, RuntimeExcep // * in reset_impl // - set the control defaults into the columns if not void // - do _not_ set the columns to NULL if no control default is set - // This fixes both #88888# and #97955# // // Still, there is #72756#. During fixing this bug, DG introduced not calling the aggregate here. So // in theory, we re-introduced #72756#. But the bug described therein does not happen anymore, as the // preliminaries for it changed (no display of guessed values for new records with autoinc fields) // - // BTW: the public Issuezilla bug for #97955# is #i2815# + // BTW: the public Issuezilla bug is #i2815# // - // 16.04.2002 - 97955 - fs@openoffice.org xUpdate->moveToInsertRow(); // then set the default values and the parameters given from the parent @@ -3866,7 +3864,6 @@ Sequence< ::rtl::OUString > SAL_CALL ODatabaseForm::getSupportedServiceNames() t // the compatible names // This is maily to be consistent with the implementation before fixing #97083#, though the // better solution _may_ be to return the compatible names at runtime, too - // 04.03.2002 - fs@openoffice.org } //------------------------------------------------------------------------------ diff --git a/forms/source/component/FormComponent.cxx b/forms/source/component/FormComponent.cxx index 0d36f10dc958..e79d97cb7cc0 100644 --- a/forms/source/component/FormComponent.cxx +++ b/forms/source/component/FormComponent.cxx @@ -1680,7 +1680,6 @@ void SAL_CALL OBoundControlModel::write( const Reference<stario::XObjectOutputSt // in anything from data loss to crash. // (use writeCommonProperties instead, this is called in derived classes write-method) // !!! EOIN !!! - // FS - 68876 - 28.09.1999 } //------------------------------------------------------------------------------ diff --git a/forms/source/component/FormattedField.cxx b/forms/source/component/FormattedField.cxx index 145671a6e120..0ada79edcf81 100644 --- a/forms/source/component/FormattedField.cxx +++ b/forms/source/component/FormattedField.cxx @@ -480,14 +480,12 @@ void OFormattedModel::describeAggregateProperties( Sequence< Property >& _rAggre // same for FormatKey // (though the paragraph above for the TreatAsNumeric does not hold anymore - we do not have an UI for this. // But we have for the format key ...) - // 25.06.2001 - 87862 - frank.schoenheit@sun.com ModifyPropertyAttributes(_rAggregateProps, PROPERTY_FORMATKEY, 0, PropertyAttribute::TRANSIENT); RemoveProperty(_rAggregateProps, PROPERTY_STRICTFORMAT); // no strict format property for formatted fields: it does not make sense, 'cause // there is no general way to decide which characters/sub strings are allowed during the input of an // arbitraryly formatted control - // 81441 - 12/07/00 - FS } //------------------------------------------------------------------------------ diff --git a/forms/source/component/ImageControl.cxx b/forms/source/component/ImageControl.cxx index 6caf6f4b530a..fe58bda8674b 100644 --- a/forms/source/component/ImageControl.cxx +++ b/forms/source/component/ImageControl.cxx @@ -934,7 +934,6 @@ void OImageControlControl::mousePressed(const ::com::sun::star::awt::MouseEvent& if ( ( e.X < 0 ) || ( e.Y < 0 ) ) { // context menu triggered by keyboard // position it in the center of the control - // 102205 - 16.08.2002 - fs@openoffice.org Reference< XWindow > xWindow( static_cast< ::cppu::OWeakObject* >( this ), UNO_QUERY ); OSL_ENSURE( xWindow.is(), "OImageControlControl::mousePressed: me not a window? How this?" ); if ( xWindow.is() ) diff --git a/forms/source/component/clickableimage.cxx b/forms/source/component/clickableimage.cxx index f37c6bbeb89f..ff9cc69d7794 100644 --- a/forms/source/component/clickableimage.cxx +++ b/forms/source/component/clickableimage.cxx @@ -296,7 +296,6 @@ namespace frm // * at the UI, show only the mark // * !!!! recognize every SAVEAS on the document, so the absolute URL can be adjusted. This seems // rather impossible !!! - // 89752 - 23.07.2001 - frank.schoenheit@sun.com aURL.Mark = aURL.Complete; aURL.Complete = xModel->getURL(); aURL.Complete += aURL.Mark; @@ -699,7 +698,6 @@ namespace frm pImgProd->SetImage( sURL ); else // caution: the medium may be NULL if somebody gave us a invalid URL to work with - // 11/24/2000 - 79667 - FS pImgProd->SetImage(String()); m_bDownloading = sal_False; return; @@ -733,7 +731,6 @@ namespace frm } // the SfxMedium is not allowed to be created with an invalid URL, so we have to check this first - // 23.01.2001 - 81927 - FS INetURLObject aUrl(rURL); if (INET_PROT_NOT_VALID == aUrl.GetProtocol()) // we treat an invalid URL like we would treat no URL diff --git a/forms/source/runtime/formoperations.cxx b/forms/source/runtime/formoperations.cxx index 7744168f9ef4..6261648e1e42 100644 --- a/forms/source/runtime/formoperations.cxx +++ b/forms/source/runtime/formoperations.cxx @@ -650,7 +650,6 @@ namespace frm case FormFeature::MoveToInsertRow: // move to the last row before moving to the insert row - // 21.01.2002 - 96480 - fs@openoffice.org m_xCursor->last(); m_xUpdateCursor->moveToInsertRow(); break; |