diff options
27 files changed, 29 insertions, 52 deletions
diff --git a/basctl/source/dlged/dlgedobj.cxx b/basctl/source/dlged/dlgedobj.cxx index b7fe7c6235b8..ff4c420d8855 100644 --- a/basctl/source/dlged/dlgedobj.cxx +++ b/basctl/source/dlged/dlgedobj.cxx @@ -1868,7 +1868,7 @@ awt::DeviceInfo DlgEdForm::getDeviceInfo() const { // don't create a temporary control all the time, this method here is called // way too often. Instead, use a cached DeviceInfo. - // 2007-02-05 / i74065 / frank.schoenheit@sun.com + // #i74065# if ( !!mpDeviceInfo ) return *mpDeviceInfo; diff --git a/cui/source/dialogs/linkdlg.cxx b/cui/source/dialogs/linkdlg.cxx index 21b03c080c56..eb1fe3432895 100644 --- a/cui/source/dialogs/linkdlg.cxx +++ b/cui/source/dialogs/linkdlg.cxx @@ -112,7 +112,7 @@ SvBaseLinksDlg::SvBaseLinksDlg( Window * pParent, LinkManager* pMgr, BOOL bHtml aTbLinks.SetTabs( &nTabs[0], MAP_APPFONT ); aTbLinks.Resize(); // OS: Hack fuer richtige Selektion - //JP 24.02.99: UpdateTimer fuer DDE-/Grf-Links, auf die gewarted wird + // UpdateTimer fuer DDE-/Grf-Links, auf die gewarted wird aUpdateTimer.SetTimeoutHdl( LINK( this, SvBaseLinksDlg, UpdateWaitingHdl ) ); aUpdateTimer.SetTimeout( 1000 ); diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx index 5c65639e2979..b187dc698993 100644 --- a/cui/source/options/optgdlg.cxx +++ b/cui/source/options/optgdlg.cxx @@ -1861,10 +1861,8 @@ void OfaLanguagesTabPage::Reset( const SfxItemSet& rSet ) aComplexLanguageFT.Enable( bEnable ); aComplexLanguageLB.Enable( bEnable ); #endif - /*---------------------07-05-07-------------------------- - check the box "For the current document only" - set the focus to the Western Language box - --------------------------------------------------------*/ + // check the box "For the current document only" + // set the focus to the Western Language box const SfxPoolItem* pLang = 0; if ( SFX_ITEM_SET == rSet.GetItemState(SID_SET_DOCUMENT_LANGUAGE, FALSE, &pLang ) &&( (const SfxBoolItem*)pLang)->GetValue() == TRUE ) { diff --git a/cui/source/tabpages/numfmt.cxx b/cui/source/tabpages/numfmt.cxx index 7aa6b144a083..6578599ee104 100644 --- a/cui/source/tabpages/numfmt.cxx +++ b/cui/source/tabpages/numfmt.cxx @@ -582,7 +582,6 @@ void SvxNumberFormatTabPage::Reset( const SfxItemSet& rSet ) AddAutomaticLanguage_Impl(eLangType, pAutoEntryAttr->GetValue()); UpdateFormatListBox_Impl(FALSE,TRUE); -//! erAck 26.01.01 //! This spoils everything because it rematches currency formats based on //! the selected aLbCurrency entry instead of the current format. //! Besides that everything seems to be initialized by now, so why call it? @@ -1124,8 +1123,6 @@ void SvxNumberFormatTabPage::UpdateFormatListBox_Impl String aFormat=*aEntryList[nFmtLbSelPos]; aEdFormat.SetText(aFormat); aFtComment.SetText(pNumFmtShell->GetComment4Entry(nFmtLbSelPos)); - - //@23.09.97 aEdFormat.SetText( aLbFormat.GetSelectEntry() ); } if(!bOneAreaFlag || !bCat) diff --git a/cui/source/tabpages/tparea.cxx b/cui/source/tabpages/tparea.cxx index 6d18eeb17d35..fbb47f95a004 100644 --- a/cui/source/tabpages/tparea.cxx +++ b/cui/source/tabpages/tparea.cxx @@ -1245,7 +1245,7 @@ BOOL SvxAreaTabPage::FillItemSet( SfxItemSet& rAttrs ) { // Prozentwerte werden negativ gesetzt, damit // diese nicht skaliert werden; dieses wird - // im Item beruecksichtigt ( KA05.11.96 ) + // im Item beruecksichtigt pItem = new XFillBmpSizeXItem( -labs( static_cast<long>(aMtrFldXSize.GetValue()) ) ); } } @@ -1282,7 +1282,7 @@ BOOL SvxAreaTabPage::FillItemSet( SfxItemSet& rAttrs ) { // Prozentwerte werden negativ gesetzt, damit // diese vom MetricItem nicht skaliert werden; - // dieses wird im Item beruecksichtigt ( KA05.11.96 ) + // dieses wird im Item beruecksichtigt pItem = new XFillBmpSizeYItem( -labs( static_cast<long>(aMtrFldYSize.GetValue()) ) ); } } diff --git a/extensions/source/propctrlr/browserlistbox.cxx b/extensions/source/propctrlr/browserlistbox.cxx index 02e663c820c4..fdc9d80dcbc5 100644 --- a/extensions/source/propctrlr/browserlistbox.cxx +++ b/extensions/source/propctrlr/browserlistbox.cxx @@ -393,7 +393,6 @@ namespace pcr // doing the commit here, while we, as well as our owner, as well as some other components, // are already "half dead" (means within their dtor) is potentially dangerous. // By definition, CommitModified has to be called (if necessary) before destruction - // #105868# - 2002-12-13 - fs@openoffice.org m_pControlContextImpl->dispose(); m_pControlContextImpl.clear(); @@ -421,7 +420,7 @@ namespace pcr if ( IsModified() && m_xActiveControl.is() ) { // for the time of this commit, notify all events synchronously - // #i63814# / 2006-03-31 / frank.schoenheit@sun.com + // #i63814# m_pControlContextImpl->setNotificationMode( PropertyControlContext_Impl::eSynchronously ); try { diff --git a/extensions/source/propctrlr/browserview.cxx b/extensions/source/propctrlr/browserview.cxx index 3ec4e3bf3ded..be772262cd48 100644 --- a/extensions/source/propctrlr/browserview.cxx +++ b/extensions/source/propctrlr/browserview.cxx @@ -114,7 +114,7 @@ namespace pcr if ( ( KEY_DELETE == nKey ) || ( KEY_BACKSPACE == nKey ) ) // silence this, we don't want to propagate this outside the property // browser, as it will probably do harm there - // #i63285# / 2006-12-06 / frank.schoenheit@sun.com + // #i63285# return 1; } return Window::Notify( _rNEvt ); diff --git a/extensions/source/propctrlr/cellbindinghandler.cxx b/extensions/source/propctrlr/cellbindinghandler.cxx index ea64279b2e81..882a319929d3 100644 --- a/extensions/source/propctrlr/cellbindinghandler.cxx +++ b/extensions/source/propctrlr/cellbindinghandler.cxx @@ -175,7 +175,7 @@ namespace pcr aDependentProperties.push_back( PROPERTY_ID_BOUNDCOLUMN ); // also reset the list entries if the cell range is reset - // #i28319# - 2004-04-27 - fs@openoffice.org + // #i28319# if ( !_bFirstTimeInit ) { try diff --git a/extensions/source/propctrlr/formcomponenthandler.cxx b/extensions/source/propctrlr/formcomponenthandler.cxx index 63dac91d9b7f..61a0edaa10c7 100644 --- a/extensions/source/propctrlr/formcomponenthandler.cxx +++ b/extensions/source/propctrlr/formcomponenthandler.cxx @@ -2846,7 +2846,6 @@ namespace pcr if ( INET_PROT_FILE == aParser.GetProtocol() ) // set the initial directory only for file-URLs. Everything else // is considered to be potentially expensive - // 106126 - 2002/12/10 - fs@openoffice.org aFileDlg.SetDisplayDirectory( sURL ); _rClearBeforeDialog.clear(); @@ -2900,7 +2899,6 @@ namespace pcr if ( INET_PROT_FILE == aParser.GetProtocol() ) // set the initial directory only for file-URLs. Everything else // is considered to be potentially expensive - // 106126 - 2002/12/10 - fs@openoffice.org aFileDlg.SetDisplayDirectory( sDataSource ); const String s_sDatabaseType = String::CreateFromAscii("StarOffice XML (Base)"); diff --git a/forms/source/component/DatabaseForm.cxx b/forms/source/component/DatabaseForm.cxx index cd6ebeae1160..79205f7859f1 100644 --- a/forms/source/component/DatabaseForm.cxx +++ b/forms/source/component/DatabaseForm.cxx @@ -2106,8 +2106,7 @@ void ODatabaseForm::reset_impl(bool _bAproveByListeners) aResetGuard.reset(); // ensure that the row isn't modified // (do this _before_ the listeners are notified ! their reaction (maybe asynchronous) may depend - // on the modified state of the row - // 21.02.00 - 73265 - FS) + // on the modified state of the row) if (bInsertRow) m_xAggregateSet->setPropertyValue(PROPERTY_ISMODIFIED, ::cppu::bool2any(sal_Bool(sal_False))); diff --git a/forms/source/component/Edit.cxx b/forms/source/component/Edit.cxx index e5f5375f0e1a..c7cdda51722a 100644 --- a/forms/source/component/Edit.cxx +++ b/forms/source/component/Edit.cxx @@ -561,7 +561,6 @@ void OEditModel::write(const Reference<XObjectOutputStream>& _rxOutStream) throw { // -> fuer die Dauer des Speicherns meinem aggregierten Model die alte TextLen einreden // before doing this we have to save the current text value of the aggregate, as this may be affected by resetting the text len - // FS - 08.12.99 - 70606 aCurrentText = m_xAggregateSet->getPropertyValue(PROPERTY_TEXT); m_xAggregateSet->getPropertyValue(PROPERTY_MAXTEXTLEN) >>= nOldTextLen; diff --git a/forms/source/component/File.cxx b/forms/source/component/File.cxx index 4e4b62dc6131..a780574c97bd 100644 --- a/forms/source/component/File.cxx +++ b/forms/source/component/File.cxx @@ -294,7 +294,6 @@ void OFileControlModel::_reset() { // release our mutex once (it's acquired in the calling method !), as setting aggregate properties // may cause any uno controls belonging to us to lock the solar mutex, which is potentially dangerous with // our own mutex locked - // FS - 72451 - 31.01.00 MutexRelease aRelease(m_aMutex); m_xAggregateSet->setPropertyValue(PROPERTY_TEXT, makeAny(m_sDefaultValue)); } diff --git a/forms/source/component/Filter.cxx b/forms/source/component/Filter.cxx index 07e964bf5c43..cfc0ec5e6e09 100644 --- a/forms/source/component/Filter.cxx +++ b/forms/source/component/Filter.cxx @@ -256,7 +256,6 @@ namespace frm OControl::initFormControlPeer( getPeer() ); // filter controls are _never_ readonly - // #107013# - 2002-02-03 - fs@openoffice.org Reference< XPropertySet > xModel( getModel(), UNO_QUERY_THROW ); Reference< XPropertySetInfo > xModelPSI( xModel->getPropertySetInfo(), UNO_SET_THROW ); if ( xModelPSI->hasPropertyByName( PROPERTY_READONLY ) ) diff --git a/forms/source/component/FormComponent.cxx b/forms/source/component/FormComponent.cxx index e79d97cb7cc0..55572a73afe8 100644 --- a/forms/source/component/FormComponent.cxx +++ b/forms/source/component/FormComponent.cxx @@ -599,7 +599,7 @@ OControlModel::OControlModel( ,m_bNativeLook( sal_False ) // form controls are usually embedded into documents, not dialogs, and in documents // the native look is ugly .... - // #i37342# / 2004-11-19 / frank.schoenheit@sun.com + // #i37342# { DBG_CTOR(OControlModel, NULL); if (_rUnoControlModelTypeName.getLength()) // the is a model we have to aggregate @@ -2162,7 +2162,7 @@ void OBoundControlModel::initFromField( const Reference< XRowSet >& _rxRowSet ) transferDbValueToControl(); else // reset the field if the row set is empty - // #i30661# / 2004-12-16 / frank.schoenheit@sun.com + // #i30661# resetNoBroadcast(); } } @@ -2335,7 +2335,6 @@ void OBoundControlModel::doSetControlValue( const Any& _rValue ) // release our mutex once (it's acquired in one of the the calling methods), as setting aggregate properties // may cause any uno controls belonging to us to lock the solar mutex, which is potentially dangerous with // our own mutex locked - // #72451# / 2000-01-31 / frank.schoenheit@sun.com MutexRelease aRelease( m_aMutex ); if ( ( m_nValuePropertyAggregateHandle != -1 ) && m_xAggregateFastSet.is() ) { @@ -2476,10 +2475,7 @@ void OBoundControlModel::reset() throw (RuntimeException) { OSL_ENSURE( sal_False, "OBoundControlModel::reset: caught an SQL exception!" ); } - // don't count the insert row as "invalid" - // @since #i24495# - // @date 2004-05-14 - // @author fs@openoffice.org + // #i24495# - don't count the insert row as "invalid" sal_Bool bSimpleReset = ( !m_xColumn.is() // no connection to a database column diff --git a/forms/source/component/FormattedField.cxx b/forms/source/component/FormattedField.cxx index 0ada79edcf81..961c0d7e9207 100644 --- a/forms/source/component/FormattedField.cxx +++ b/forms/source/component/FormattedField.cxx @@ -127,7 +127,7 @@ StandardFormatsSupplier::StandardFormatsSupplier(const Reference< XMultiServiceF { SetNumberFormatter(m_pMyPrivateFormatter); - // #i29147# - 2004-06-18 - fs@openoffice.org + // #i29147# ::utl::DesktopTerminationObserver::registerTerminationListener( this ); } @@ -184,7 +184,7 @@ void StandardFormatsSupplier::notifyTermination() Reference< XNumberFormatsSupplier > xKeepAlive = this; // when the application is terminating, release our static reference so that we are cleared/destructed // earlier than upon unloading the library - // #i29147# - 2004-06-18 - fs@openoffice.org + // #i29147# s_xDefaultFormatsSupplier = WeakReference< XNumberFormatsSupplier >( ); SetNumberFormatter( NULL ); @@ -689,7 +689,6 @@ void OFormattedModel::loaded(const EventObject& rEvent) throw ( ::com::sun::star // property requests and one for our own code. This would need a lot of code rewriting // alternative b): The NumberFormatter has to be really threadsafe (with an own mutex), which is // the only "clean" solution for me. - // FS - 69603 - 02.11.99 SolarMutexGuard aGuard; OEditBaseModel::loaded(rEvent); diff --git a/forms/source/component/ImageControl.cxx b/forms/source/component/ImageControl.cxx index fe58bda8674b..5fd9942b33cb 100644 --- a/forms/source/component/ImageControl.cxx +++ b/forms/source/component/ImageControl.cxx @@ -180,7 +180,6 @@ OImageControlModel::OImageControlModel( const OImageControlModel* _pOriginal, co osl_incrementInterlockedCount( &m_refCount ); { // simulate a propertyChanged event for the ImageURL - // 2003-05-15 - #109591# - fs@openoffice.org ::osl::MutexGuard aGuard( m_aMutex ); impl_handleNewImageURL_lck( eOther ); } @@ -644,7 +643,6 @@ void OImageControlModel::doSetControlValue( const Any& _rValue ) // release our mutex once (it's acquired in the calling method!), as starting the image production may // result in the locking of the solar mutex (unfortunally the default implementation of our aggregate, // VCLXImageControl, does this locking) - // FS - 74438 - 30.03.00 MutexRelease aRelease(m_aMutex); xProducer->startProduction(); } @@ -861,7 +859,7 @@ bool OImageControlControl::implInsertGraphics() // Force bIsLink to be TRUE if we're bound to a field. Though we initialized the file picker with IsLink=TRUE // in this case, and disabled the respective control, there might be picker implementations which do not // respect this, and return IsLink=FALSE here. In this case, "normalize" the flag. - // #i112659# / 2010-08-26 / frank.schoenheit@oracle.com + // #i112659# bIsLink |= bHasField; if ( !bIsLink ) { @@ -973,7 +971,6 @@ void OImageControlControl::mousePressed(const ::com::sun::star::awt::MouseEvent& // wenn Control nicht gebunden ist, kein Dialog (da die zu schickende URL hinterher sowieso // versanden wuerde) - // FS - #64946# - 19.04.99 Reference<XPropertySet> xBoundField; if (hasProperty(PROPERTY_BOUNDFIELD, xSet)) ::cppu::extractInterface(xBoundField, xSet->getPropertyValue(PROPERTY_BOUNDFIELD)); diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx index 734704c33c76..575a55d84db6 100644 --- a/forms/source/component/ListBox.cxx +++ b/forms/source/component/ListBox.cxx @@ -411,7 +411,7 @@ namespace frm void SAL_CALL OListBoxModel::setPropertyValues( const Sequence< ::rtl::OUString >& _rPropertyNames, const Sequence< Any >& _rValues ) throw(PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException) { // if both SelectedItems and StringItemList are set, care for this - // #i27024# / 2004-04-05 / fs@openoffice.org + // #i27024# const Any* pSelectSequenceValue = NULL; const ::rtl::OUString* pStartPos = _rPropertyNames.getConstArray(); diff --git a/forms/source/component/clickableimage.cxx b/forms/source/component/clickableimage.cxx index ff9cc69d7794..dc839f679c4b 100644 --- a/forms/source/component/clickableimage.cxx +++ b/forms/source/component/clickableimage.cxx @@ -500,7 +500,6 @@ namespace frm osl_incrementInterlockedCount( &m_refCount ); { // simulate a propertyChanged event for the ImageURL - // 2003-05-15 - #109591# - fs@openoffice.org Any aImageURL; getFastPropertyValue( aImageURL, PROPERTY_ID_IMAGE_URL ); _propertyChanged( PropertyChangeEvent( *this, PROPERTY_IMAGE_URL, sal_False, PROPERTY_ID_IMAGE_URL, Any( ), aImageURL ) ); diff --git a/forms/source/misc/InterfaceContainer.cxx b/forms/source/misc/InterfaceContainer.cxx index 7374370c0b2c..8fff1f79fa20 100644 --- a/forms/source/misc/InterfaceContainer.cxx +++ b/forms/source/misc/InterfaceContainer.cxx @@ -554,7 +554,6 @@ void SAL_CALL OInterfaceContainer::read( const Reference< XObjectInputStream >& // after ::read the object is expected to be in the state it was when ::write was called, so we have // to empty ourself here - // FS - 71598 - 12.01.00 while (getCount()) removeByIndex(0); @@ -583,7 +582,6 @@ void SAL_CALL OInterfaceContainer::read( const Reference< XObjectInputStream >& if ( !xObj.is() ) // couldn't handle it throw; - // 72133 - 09.02.00 - FS } catch(Exception&) { diff --git a/forms/source/runtime/formoperations.cxx b/forms/source/runtime/formoperations.cxx index 6261648e1e42..5bca1a5447a6 100644 --- a/forms/source/runtime/formoperations.cxx +++ b/forms/source/runtime/formoperations.cxx @@ -548,7 +548,7 @@ namespace frm m_xLoadableForm->reload(); // refresh all controls in the form (and sub forms) which can be refreshed - // #i90914# / 2008-07-02 / frank.schoenheit@sun.com + // #i90914# ::comphelper::IndexAccessIterator aIter( m_xLoadableForm ); Reference< XInterface > xElement( aIter.Next() ); while ( xElement.is() ) diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/SolarisHelper.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/SolarisHelper.java index ad3460159262..2fe31cba67ea 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/SolarisHelper.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallerHelper/SolarisHelper.java @@ -364,13 +364,13 @@ public class SolarisHelper { } public boolean comparePackageVersions(String firstPackageVersion, String secondPackageVersion) { - // Analyzing strings: version, 2.0.0,REV=106.2005.05.26 + // Analyzing strings boolean firstPackageIsOlder = false; String comparison = null; - String firstPackageMainVersion = getMainVersion(firstPackageVersion); // 2.0.0 - String secondPackageMainVersion = getMainVersion(secondPackageVersion); // 2.0.0 + String firstPackageMainVersion = getMainVersion(firstPackageVersion); + String secondPackageMainVersion = getMainVersion(secondPackageVersion); if (( firstPackageMainVersion != null ) && ( secondPackageMainVersion != null )) { comparison = compareVersion(firstPackageMainVersion, secondPackageMainVersion); @@ -381,8 +381,8 @@ public class SolarisHelper { } else if ( comparison.equals("secondPackageIsOlder") ) { firstPackageIsOlder = false; } else if ( comparison.equals("bothPackagesAreEqual") ) { - String firstPackageRevision = getPackageRevision(firstPackageVersion); // 106.2005.05.26 - String secondPackageRevision = getPackageRevision(secondPackageVersion); // 106.2005.05.26 + String firstPackageRevision = getPackageRevision(firstPackageVersion); + String secondPackageRevision = getPackageRevision(secondPackageVersion); if (( firstPackageRevision != null ) && ( secondPackageRevision != null )) { comparison = compareVersion(firstPackageRevision, secondPackageRevision); diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java index 8d43fb4d01f1..ea42d0b6f986 100755 --- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java +++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java @@ -303,7 +303,7 @@ public class ModuleCtrl { if (isUninstall) { if (isInstalled) { packageData.setSelectionState(PackageDescription.REMOVE); - // The following is no longer required !? (IS, 06/05/08) + // The following is no longer required !? // PackageDescription parent = packageData.getParent(); // if ( parent != null ) { // if ( parent.getSelectionState() != PackageDescription.REMOVE ) { diff --git a/package/source/zipapi/EntryInputStream.cxx b/package/source/zipapi/EntryInputStream.cxx index cd43622ea8ac..99df55c921a1 100644 --- a/package/source/zipapi/EntryInputStream.cxx +++ b/package/source/zipapi/EntryInputStream.cxx @@ -42,7 +42,7 @@ using namespace com::sun::star::packages::zip::ZipConstants; /** Provides access to the compressed data in a zipfile. * - * 04/12/00 - uncompresses the stream into memory and seeks on it 'in memory' + * uncompresses the stream into memory and seeks on it 'in memory' * This and the ZipPackageBuffer used in the ZipOutputStream are memory hogs * and will hopefully be replaced eventually * diff --git a/xmlsecurity/inc/xmlsecurity/certificatechooser.hxx b/xmlsecurity/inc/xmlsecurity/certificatechooser.hxx index e74aa1f5cece..e7ff72c23e88 100644 --- a/xmlsecurity/inc/xmlsecurity/certificatechooser.hxx +++ b/xmlsecurity/inc/xmlsecurity/certificatechooser.hxx @@ -61,7 +61,7 @@ private: SignatureInformations maCertsToIgnore; FixedText maHintFT; - SvxSimpleTable maCertLB; // PB 2006/02/02 #i48648 now SvHeaderTabListBox + SvxSimpleTable maCertLB; // #i48648 now SvHeaderTabListBox PushButton maViewBtn; diff --git a/xmlsecurity/inc/xmlsecurity/certificateviewer.hxx b/xmlsecurity/inc/xmlsecurity/certificateviewer.hxx index f9031a9514ed..fbca79d555f5 100644 --- a/xmlsecurity/inc/xmlsecurity/certificateviewer.hxx +++ b/xmlsecurity/inc/xmlsecurity/certificateviewer.hxx @@ -114,7 +114,7 @@ public: class CertificateViewerDetailsTP : public CertificateViewerTP { private: - SvxSimpleTable maElementsLB; // PB 2006/02/02 #i48648 now SvHeaderTabListBox + SvxSimpleTable maElementsLB; // #i48648 now SvHeaderTabListBox MultiLineEdit maElementML; Font maStdFont; Font maFixedWidthFont; diff --git a/xmlsecurity/inc/xmlsecurity/digitalsignaturesdialog.hxx b/xmlsecurity/inc/xmlsecurity/digitalsignaturesdialog.hxx index 292653745f80..71ac58878e76 100644 --- a/xmlsecurity/inc/xmlsecurity/digitalsignaturesdialog.hxx +++ b/xmlsecurity/inc/xmlsecurity/digitalsignaturesdialog.hxx @@ -80,7 +80,7 @@ private: FixedText maHintDocFT; FixedText maHintBasicFT; FixedText maHintPackageFT; - SvxSimpleTable maSignaturesLB; // PB 2006/02/02 #i48648 now SvHeaderTabListBox + SvxSimpleTable maSignaturesLB; // #i48648 now SvHeaderTabListBox FixedImage maSigsValidImg; FixedInfo maSigsValidFI; FixedImage maSigsInvalidImg; diff --git a/xmlsecurity/inc/xmlsecurity/macrosecurity.hxx b/xmlsecurity/inc/xmlsecurity/macrosecurity.hxx index 46854d04d604..1d80081c83b5 100644 --- a/xmlsecurity/inc/xmlsecurity/macrosecurity.hxx +++ b/xmlsecurity/inc/xmlsecurity/macrosecurity.hxx @@ -138,7 +138,7 @@ class MacroSecurityTrustedSourcesTP : public MacroSecurityTP private: FixedLine maTrustCertFL; ReadOnlyImage maTrustCertROFI; - SvxSimpleTable maTrustCertLB; // PB 2006/02/02 #i48648 now SvHeaderTabListBox + SvxSimpleTable maTrustCertLB; // #i48648 now SvHeaderTabListBox PushButton maAddCertPB; PushButton maViewCertPB; PushButton maRemoveCertPB; |