[Libreoffice-commits] .: dbaccess/source reportdesign/source

Christina Rossmanith crossmanith at kemper.freedesktop.org
Tue Mar 1 11:49:08 PST 2011


 dbaccess/source/core/api/RowSet.cxx                     |    2 +-
 dbaccess/source/core/api/SingleSelectQueryComposer.cxx  |    2 +-
 dbaccess/source/core/dataaccess/ModelImpl.cxx           |    2 +-
 dbaccess/source/core/dataaccess/databasecontext.cxx     |    2 +-
 dbaccess/source/core/dataaccess/databasedocument.cxx    |    4 ++--
 dbaccess/source/core/dataaccess/databasedocument.hxx    |    2 +-
 dbaccess/source/core/dataaccess/datasource.cxx          |    2 +-
 dbaccess/source/core/dataaccess/definitioncontainer.cxx |    2 +-
 dbaccess/source/core/dataaccess/documentdefinition.cxx  |   11 +++++------
 dbaccess/source/ext/macromigration/migrationengine.cxx  |    2 +-
 dbaccess/source/ui/app/AppControllerDnD.cxx             |    4 ++--
 dbaccess/source/ui/app/AppView.cxx                      |    4 ++--
 dbaccess/source/ui/browser/dbloader.cxx                 |    2 +-
 dbaccess/source/ui/browser/genericcontroller.cxx        |    3 +--
 dbaccess/source/ui/browser/unodatbr.cxx                 |    5 ++---
 dbaccess/source/ui/control/dbtreelistbox.cxx            |    2 --
 dbaccess/source/ui/dlg/sqlmessage.cxx                   |    2 +-
 dbaccess/source/ui/inc/DExport.hxx                      |    3 +--
 dbaccess/source/ui/querydesign/QueryTableView.cxx       |    1 -
 dbaccess/source/ui/uno/composerdialogs.cxx              |    2 +-
 reportdesign/source/core/api/ReportDefinition.cxx       |    2 +-
 reportdesign/source/ui/dlg/Condition.cxx                |    2 +-
 22 files changed, 28 insertions(+), 35 deletions(-)

New commits:
commit 66a9d4be45d8bc968507dca80d9d79509ccd311a
Author: Guillaume Poussel <gpoussel at gmail.com>
Date:   Sun Feb 27 22:55:22 2011 +0100

    Remove date comments in base.

diff --git a/dbaccess/source/core/api/RowSet.cxx b/dbaccess/source/core/api/RowSet.cxx
index 4e30b02..e36a995 100644
--- a/dbaccess/source/core/api/RowSet.cxx
+++ b/dbaccess/source/core/api/RowSet.cxx
@@ -1579,7 +1579,7 @@ void ORowSet::setStatementResultSetType( const Reference< XPropertySet >& _rxSta
     sal_Int32 nResultSetConcurrency( _nDesiredResultSetConcurrency );
 
     // there *might* be a data source setting which tells use to be more defensive with those settings
-    // #i15113# / 2005-02-10 / frank.schoenheit at sun.com
+    // #i15113#
     sal_Bool bRespectDriverRST = sal_False;
     Any aSetting;
     if ( getDataSourceSetting( ::dbaccess::getDataSource( m_xActiveConnection ), "RespectDriverResultSetType", aSetting ) )
diff --git a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
index 7b32c6b..cba433d 100644
--- a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
+++ b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
@@ -790,7 +790,7 @@ Reference< XNameAccess > SAL_CALL OSingleSelectQueryComposer::getColumns(  ) thr
         aSQL.append( STR_WHERE );
 
         // preserve the original WHERE clause
-        // #i102234# / 2009-06-02 / frank.schoenheit at sun.com
+        // #i102234#
         ::rtl::OUString sOriginalWhereClause = getSQLPart( Where, m_aSqlIterator, sal_False );
         if ( sOriginalWhereClause.getLength() )
         {
diff --git a/dbaccess/source/core/dataaccess/ModelImpl.cxx b/dbaccess/source/core/dataaccess/ModelImpl.cxx
index 1cf3c18..630f37a 100644
--- a/dbaccess/source/core/dataaccess/ModelImpl.cxx
+++ b/dbaccess/source/core/dataaccess/ModelImpl.cxx
@@ -1005,7 +1005,7 @@ Reference< XModel > ODatabaseModelImpl::createNewModel_deliverOwnership( bool _b
             // However, in case that the document is implicitly created by asking the data source for the document,
             // then nobody would call the doc's attachResource. So, we do it here, to ensure it's in a proper
             // state, fires all events, and so on.
-            // #i105505# / 2009-10-02 / frank.schoenheit at sun.com
+            // #i105505#
             xModel->attachResource( xModel->getURL(), m_aMediaDescriptor.getPropertyValues() );
         }
 
diff --git a/dbaccess/source/core/dataaccess/databasecontext.cxx b/dbaccess/source/core/dataaccess/databasecontext.cxx
index 7b6e9ac..23ff3bf 100644
--- a/dbaccess/source/core/dataaccess/databasecontext.cxx
+++ b/dbaccess/source/core/dataaccess/databasecontext.cxx
@@ -487,7 +487,7 @@ void ODatabaseContext::storeTransientProperties( ODatabaseModelImpl& _rModelImpl
     }
 
     // additionally, remember the "failed password", which is not available as property
-    // #i86178# / 2008-02-19 / frank.schoenheit at sun.com
+    // #i86178#
     aRememberProps.put( "AuthFailedPassword", _rModelImpl.m_sFailedPassword );
 
     ::rtl::OUString sDocumentURL( _rModelImpl.getURL() );
diff --git a/dbaccess/source/core/dataaccess/databasedocument.cxx b/dbaccess/source/core/dataaccess/databasedocument.cxx
index e92de90..06b2d8b 100644
--- a/dbaccess/source/core/dataaccess/databasedocument.cxx
+++ b/dbaccess/source/core/dataaccess/databasedocument.cxx
@@ -206,7 +206,7 @@ ODatabaseDocument::ODatabaseDocument(const ::rtl::Reference<ODatabaseModelImpl>&
         {
             // if the previous incarnation of the DatabaseDocument already had an URL, then creating this incarnation
             // here is effectively loading the document.
-            // #i105505# / 2009-10-01 / frank.schoenheit at sun.com
+            // #i105505#
             m_aViewMonitor.onLoadedDocument();
         }
     }
@@ -801,7 +801,7 @@ void SAL_CALL ODatabaseDocument::disconnectController( const Reference< XControl
     if ( bLastControllerGone && !bIsClosing )
     {
         // if this was the last view, close the document as a whole
-        // #i51157# / 2006-03-16 / frank.schoenheit at sun.com
+        // #i51157#
         try
         {
             close( sal_True );
diff --git a/dbaccess/source/core/dataaccess/databasedocument.hxx b/dbaccess/source/core/dataaccess/databasedocument.hxx
index 9659c03..4531d0c 100644
--- a/dbaccess/source/core/dataaccess/databasedocument.hxx
+++ b/dbaccess/source/core/dataaccess/databasedocument.hxx
@@ -292,7 +292,7 @@ private:
     // Do NOT create those documents directly, always use ODatabaseModelImpl::getModel. Reason is that
     // ODatabaseDocument requires clear ownership, and in turn lifetime synchronisation with the ModelImpl.
     // If you create a ODatabaseDocument directly, you might easily create a leak.
-    // #i50905# / 2005-06-20 / frank.schonheit at sun.com
+    // #i50905#
 
 protected:
     virtual void SAL_CALL disposing();
diff --git a/dbaccess/source/core/dataaccess/datasource.cxx b/dbaccess/source/core/dataaccess/datasource.cxx
index 6e7d765..6ebe5d5 100644
--- a/dbaccess/source/core/dataaccess/datasource.cxx
+++ b/dbaccess/source/core/dataaccess/datasource.cxx
@@ -1351,7 +1351,7 @@ void SAL_CALL ODatabaseSource::flushed( const EventObject& /*rEvent*/ ) throw (R
     // XFlushListener at the embedded connection (which needs to provide the XFlushable functionality).
     // Then, when the connection is flushed, we commit both the database storage and our main storage.
     //
-    // #i55274# / 2005-09-30 / frank.schoenheit at sun.com
+    // #i55274#
 
     OSL_ENSURE( m_pImpl->isEmbeddedDatabase(), "ODatabaseSource::flushed: no embedded database?!" );
     sal_Bool bWasModified = m_pImpl->m_bModified;
diff --git a/dbaccess/source/core/dataaccess/definitioncontainer.cxx b/dbaccess/source/core/dataaccess/definitioncontainer.cxx
index a1faa92..a799c0a 100644
--- a/dbaccess/source/core/dataaccess/definitioncontainer.cxx
+++ b/dbaccess/source/core/dataaccess/definitioncontainer.cxx
@@ -536,7 +536,7 @@ void ODefinitionContainer::implAppend(const ::rtl::OUString& _rName, const Refer
             // Somebody could create an object with name "foo", and insert it as "bar"
             // into a container. In this case, we need to ensure that the object name
             // is also "bar"
-            // #i44786# / 2005-03-11 / frank.schoenheit at sun.com
+            // #i44786#
             lcl_ensureName( _rxNewObject, _rName );
 
             ::rtl::Reference< OContentHelper > pContent = OContentHelper::getImplementation( _rxNewObject );
diff --git a/dbaccess/source/core/dataaccess/documentdefinition.cxx b/dbaccess/source/core/dataaccess/documentdefinition.cxx
index 7aec510..9b5df75 100644
--- a/dbaccess/source/core/dataaccess/documentdefinition.cxx
+++ b/dbaccess/source/core/dataaccess/documentdefinition.cxx
@@ -874,7 +874,7 @@ Any ODocumentDefinition::onCommandOpenSomething( const Any& _rOpenArgument, cons
         // However, it is possible to programmatically load forms/reports, without actually
         // loading the database document into a frame. In this case, the user will be asked
         // here and now.
-        // #i87741# / 2008-05-05 / frank.schoenheit at sun.com
+        // #i87741#
 
     // allow the command arguments to downgrade the macro execution mode, but not to upgrade
     // it
@@ -1238,7 +1238,7 @@ void ODocumentDefinition::onCommandInsert( const ::rtl::OUString& _sURL, const R
                                                                                 ,aEmpty),UNO_QUERY);
 
                 lcl_resetFormsToEmptyDataSource( m_xEmbeddedObject );
-                // #i57669# / 2005-12-01 / frank.schoenheit at sun.com
+                // #i57669#
 
                 Reference<XEmbedPersist> xPersist(m_xEmbeddedObject,UNO_QUERY);
                 if ( xPersist.is() )
@@ -1757,8 +1757,7 @@ void ODocumentDefinition::loadEmbeddedObject( const Reference< XConnection >& i_
                 lcl_putLoadArgs( aExistentMediaDesc, optional_bool(), optional_bool() );
                     // don't put _bSuppressMacros and _bReadOnly here - if the document was already
                     // loaded, we should not tamper with its settings.
-                    // #i88977# / 2008-05-05 / frank.schoenheit at sun.com
-                    // #i86872# / 2008-03-13 / frank.schoenheit at sun.com
+                    // #i88977# #i86872#
 
                 xModel->attachResource( xModel->getURL(), aExistentMediaDesc.getPropertyValues() );
             }
@@ -1770,7 +1769,7 @@ void ODocumentDefinition::loadEmbeddedObject( const Reference< XConnection >& i_
     }
 
     // set the OfficeDatabaseDocument instance as parent of the embedded document
-    // #i40358# / 2005-01-19 / frank.schoenheit at sun.com
+    // #i40358#
     Reference< XChild > xDepdendDocAsChild( getComponent(), UNO_QUERY );
     if ( xDepdendDocAsChild.is() )
     {
@@ -2054,7 +2053,7 @@ bool ODocumentDefinition::prepareClose()
         // suspend the controller. Embedded objects are not allowed to raise
         // own UI at their own discretion, instead, this has always to be triggered
         // by the embedding component. Thus, we do the suspend call here.
-        // #i49370# / 2005-06-09 / frank.schoenheit at sun.com
+        // #i49370#
 
         Reference< util::XCloseable > xComponent( impl_getComponent_throw( false ) );
         if ( !xComponent.is() )
diff --git a/dbaccess/source/ext/macromigration/migrationengine.cxx b/dbaccess/source/ext/macromigration/migrationengine.cxx
index 1a63e8b..04d8c18 100644
--- a/dbaccess/source/ext/macromigration/migrationengine.cxx
+++ b/dbaccess/source/ext/macromigration/migrationengine.cxx
@@ -1233,7 +1233,7 @@ namespace dbmm
             // Unfortunately, the storage implementation does not complain if you use invalid characters/names, but instead
             // it silently accepts them, and produces garbage in the file (#i95408).
             // So, until especially the former is fixed, we need to strip all invalid characters from the name.
-            // #i95865# / 2008-11-06 / frank.schoenheit at sun.com
+            // #i95865#
 
             // The general idea is to replace invalid characters with '_'. However, since "valid" essentially means
             // ASCII only, this implies that for a lot of languages, we would simply replace everything with '_',
diff --git a/dbaccess/source/ui/app/AppControllerDnD.cxx b/dbaccess/source/ui/app/AppControllerDnD.cxx
index e9d4903..09b0bdc 100644
--- a/dbaccess/source/ui/app/AppControllerDnD.cxx
+++ b/dbaccess/source/ui/app/AppControllerDnD.cxx
@@ -211,7 +211,7 @@ void OApplicationController::deleteObjects( ElementType _eType, const ::std::vec
         // The list of elements to delete is allowed to contain related elements: A given element may
         // be the ancestor or child of another element from the list.
         // We want to ensure that ancestors get deleted first, so we normalize the list in this respect.
-        // #i33353# - 2004-09-27 - fs at openoffice.org
+        // #i33353#
         ::std::set< ::rtl::OUString > aDeleteNames;
             // Note that this implicitly uses ::std::less< ::rtl::OUString > a comparison operation, which
             // results in lexicographical order, which is exactly what we need, because "foo" is *before*
@@ -265,7 +265,7 @@ void OApplicationController::deleteObjects( ElementType _eType, const ::std::vec
 
                     // now that we removed the element, care for all it's child elements
                     // which may also be a part of the list
-                    // #i33353# - 2004-09-27 - fs at openoffice.org
+                    // #i33353#
                     OSL_ENSURE( aThisRound->getLength() - 1 >= 0, "OApplicationController::deleteObjects: empty name?" );
                     ::rtl::OUStringBuffer sSmallestSiblingName( *aThisRound );
                     sSmallestSiblingName.append( (sal_Unicode)( '/' + 1) );
diff --git a/dbaccess/source/ui/app/AppView.cxx b/dbaccess/source/ui/app/AppView.cxx
index 8eceb9b..c58c18e 100644
--- a/dbaccess/source/ui/app/AppView.cxx
+++ b/dbaccess/source/ui/app/AppView.cxx
@@ -307,11 +307,11 @@ long OApplicationView::PreNotify( NotifyEvent& rNEvt )
         {
             const KeyEvent* pKeyEvent = rNEvt.GetKeyEvent();
             // give the pane the chance to intercept mnemonic accelerators
-            // #i34790# - 2004-09-30 - fs at openoffice.org
+            // #i34790#
             if ( getPanel() && getPanel()->interceptKeyInput( *pKeyEvent ) )
                 return 1L;
             // and ditto the detail view
-            // #i72799# - 2006-12-20 / frank.schoenheit at sun.com
+            // #i72799#
             if ( getDetailView() && getDetailView()->interceptKeyInput( *pKeyEvent ) )
                 return 1L;
         }
diff --git a/dbaccess/source/ui/browser/dbloader.cxx b/dbaccess/source/ui/browser/dbloader.cxx
index 872a0e1..860b947 100644
--- a/dbaccess/source/ui/browser/dbloader.cxx
+++ b/dbaccess/source/ui/browser/dbloader.cxx
@@ -229,7 +229,7 @@ void SAL_CALL DBContentLoader::load(const Reference< XFrame > & rFrame, const ::
 
     // if a data source browser is loaded without its tree pane, then we assume it to be a
     // table data view, effectively. In this case, we need to adjust the module identifier.
-    // 2008-02-05 / i85879 / frank.schoenheit at sun.com
+    // #i85879#
     ::comphelper::NamedValueCollection aLoadArgs( rArgs );
 
     if  ( sComponentURL == URL_COMPONENT_DATASOURCEBROWSER )
diff --git a/dbaccess/source/ui/browser/genericcontroller.cxx b/dbaccess/source/ui/browser/genericcontroller.cxx
index f1f499b..26142fa 100644
--- a/dbaccess/source/ui/browser/genericcontroller.cxx
+++ b/dbaccess/source/ui/browser/genericcontroller.cxx
@@ -478,7 +478,6 @@ namespace
         // #i67882# is the bug which was caused by the real fix which we did in framework
         // #i68216# is the bug which requests to fix the code in Draw which relies on
         //          framework's implementation details
-        // 2006-08-07 / frank.schoenheit at sun.com
         if ( !!_rFeatureState.sTitle )
             _out_rStates.push_back( makeAny( *_rFeatureState.sTitle ) );
         if ( !!_rFeatureState.bChecked )
@@ -767,7 +766,7 @@ void OGenericUnoController::dispatch(const URL& _aURL, const Sequence< PropertyV
     // where it's needed, but a) this might turn out difficult, since we then also need to care
     // for locking in the proper order (SolarMutex and m_aMutex), and b) this would be too many places
     // for the time frame of the fix.
-    // #i52602# / frank.schoenheit at sun.com / 2005-07-29
+    // #i52602#
 
 #ifdef TIMELOG
     ::rtl::OString sLog( "OGenericUnoController::dispatch( '" );
diff --git a/dbaccess/source/ui/browser/unodatbr.cxx b/dbaccess/source/ui/browser/unodatbr.cxx
index 1130bb7..fe4225d 100644
--- a/dbaccess/source/ui/browser/unodatbr.cxx
+++ b/dbaccess/source/ui/browser/unodatbr.cxx
@@ -1060,7 +1060,7 @@ SvLBoxEntry* SbaTableQueryBrowser::getObjectEntry(const ::rtl::OUString& _rDataS
         String sDisplayName, sDataSourceId;
         bool bIsDataSourceURL = getDataSourceDisplayName_isURL( _rDataSource, sDisplayName, sDataSourceId );
             // the display name may differ from the URL for readability reasons
-            // #i33699# - 2004-09-24 - fs at openoffice.org
+            // #i33699#
 
         FilterByEntryDataId aFilter( sDataSourceId );
         SvLBoxEntry* pDataSource = m_pTreeView->getListBox().GetEntryPosByName( sDisplayName, NULL, &aFilter );
@@ -1683,7 +1683,6 @@ FeatureState SbaTableQueryBrowser::GetState(sal_uInt16 nId) const
                     aReturn.bEnabled = aReturn.bEnabled && getBrowserView()->getVclControl()->GetSelectRowCount();
 
                 // disabled for native queries which are not saved within the database
-                // 67706 - 23.08.99 - FS
                 Reference< XPropertySet >  xDataSource(getRowSet(), UNO_QUERY);
                 try
                 {
@@ -1987,7 +1986,7 @@ void SbaTableQueryBrowser::implAddDatasource(const String& _rDbName, Image& _rDb
 
     // add the entry for the data source
     // special handling for data sources denoted by URLs - we do not want to display this ugly URL, do we?
-    // #i33699# - 2004-09-24 - fs at openoffice.org
+    // #i33699#
     String sDSDisplayName, sDataSourceId;
     getDataSourceDisplayName_isURL( _rDbName, sDSDisplayName, sDataSourceId );
 
diff --git a/dbaccess/source/ui/control/dbtreelistbox.cxx b/dbaccess/source/ui/control/dbtreelistbox.cxx
index 3b8db9f..b25d34b 100644
--- a/dbaccess/source/ui/control/dbtreelistbox.cxx
+++ b/dbaccess/source/ui/control/dbtreelistbox.cxx
@@ -403,8 +403,6 @@ void DBTreeListBox::KeyInput( const KeyEvent& rKEvt )
         // is used by the document will raise a similar bug once somebody discovers it.
         // If this is the case, we should discuss a real solution with the framework (SFX) and the
         // applications.
-        //
-        // 2002-12-02 - 105831 - fs at openoffice.org
     }
 
     if ( !bHandled )
diff --git a/dbaccess/source/ui/dlg/sqlmessage.cxx b/dbaccess/source/ui/dlg/sqlmessage.cxx
index fb950eb..24eb67b 100644
--- a/dbaccess/source/ui/dlg/sqlmessage.cxx
+++ b/dbaccess/source/ui/dlg/sqlmessage.cxx
@@ -375,7 +375,7 @@ OExceptionChainDialog::OExceptionChainDialog( Window* pParent, const ExceptionDi
     }
 
     // if the error has the code 22018, then add an additional explanation
-    // #i24021# / 2004-10-14 / frank.schoenheit at sun.com
+    // #i24021#
     if ( bHave22018 )
     {
         ProviderFactory aProviderFactory;
diff --git a/dbaccess/source/ui/inc/DExport.hxx b/dbaccess/source/ui/inc/DExport.hxx
index fde1711..34ff81b 100644
--- a/dbaccess/source/ui/inc/DExport.hxx
+++ b/dbaccess/source/ui/inc/DExport.hxx
@@ -94,10 +94,9 @@ namespace dbaui
 
         SvNumberFormatter*  m_pFormatter;
         SvStream&           m_rInputStream;
-        //dyf add 2006/06/01
         //for save the selected tablename
         ::rtl::OUString     m_sDefaultTableName;		
-        //dyf add end
+
         String				m_sTextToken;		// Zellen Inhalt
         String				m_sNumToken;        /// SDNUM value
         String				m_sValToken;        /// SDVAL value
diff --git a/dbaccess/source/ui/querydesign/QueryTableView.cxx b/dbaccess/source/ui/querydesign/QueryTableView.cxx
index 86e4da5..e79282d 100644
--- a/dbaccess/source/ui/querydesign/QueryTableView.cxx
+++ b/dbaccess/source/ui/querydesign/QueryTableView.cxx
@@ -236,7 +236,6 @@ namespace
                 // automatically remove all connections adjacent to the win.
                 // (Because of this automatism we would have an ownerhsip ambiguity for
                 // the connection data if we would insert the conn-Undo-Action)
-                // FS - 21.10.99 - 69183
         }
     }
 }
diff --git a/dbaccess/source/ui/uno/composerdialogs.cxx b/dbaccess/source/ui/uno/composerdialogs.cxx
index 18f87bc..70b7576 100644
--- a/dbaccess/source/ui/uno/composerdialogs.cxx
+++ b/dbaccess/source/ui/uno/composerdialogs.cxx
@@ -124,7 +124,7 @@ namespace dbaui
             if ( !xColumns.is() || !xColumns->hasElements() )
             {   // perhaps the composer can supply us with columns? This is necessary for cases
                 // where the dialog is invoked for a rowset which is not yet loaded
-                // #i22878# - 2003-12-16 - fs at openoffice.org
+                // #i22878#
                 xSuppColumns = xSuppColumns.query( m_xComposer );
                 if ( xSuppColumns.is() )
                     xColumns = xSuppColumns->getColumns();
diff --git a/reportdesign/source/core/api/ReportDefinition.cxx b/reportdesign/source/core/api/ReportDefinition.cxx
index bb70d69..e4eee67 100644
--- a/reportdesign/source/core/api/ReportDefinition.cxx
+++ b/reportdesign/source/core/api/ReportDefinition.cxx
@@ -809,7 +809,7 @@ void SAL_CALL OReportDefinition::disposing()
         // don't dispose, this currently is the task of either the ref count going to
         // 0, or of the embedded object (if we're embedded, which is the only possible
         // case so far)
-        // #i78366# / 2007-06-18 / frank.schoenheit at sun.com
+        // #i78366#
     m_pImpl->m_xStorage.clear();
     m_pImpl->m_xViewData.clear();
     m_pImpl->m_xCurrentController.clear();
diff --git a/reportdesign/source/ui/dlg/Condition.cxx b/reportdesign/source/ui/dlg/Condition.cxx
index b05321f..2aba0c4 100644
--- a/reportdesign/source/ui/dlg/Condition.cxx
+++ b/reportdesign/source/ui/dlg/Condition.cxx
@@ -220,7 +220,7 @@ IMPL_LINK( OColorPopup, SelectHdl, void *, EMPTYARG )
     USHORT nItemId = m_aColorSet.GetSelectItemId();
     Color aColor( nItemId == 0 ? Color( COL_TRANSPARENT ) : m_aColorSet.GetItemColor( nItemId ) );
 
-    /*  #i33380# DR 2004-09-03 Moved the following line above the Dispatch() calls.
+    /*  #i33380# Moved the following line above the Dispatch() calls.
         This instance may be deleted in the meantime (i.e. when a dialog is opened
         while in Dispatch()), accessing members will crash in this case. */
     m_aColorSet.SetNoSelection();


More information about the Libreoffice-commits mailing list