User: kz      
Date: 2008-06-25 13:03:18+0000
Modified:
   dba/dbaccess/source/ui/tabledesign/TableUndo.cxx

Log:
 INTEGRATION: CWS dba30d (1.20.30); FILE MERGED
 2008/05/29 11:27:02 fs 1.20.30.1: during #i80943#: refactoring: IController 
now passed around as reference, not as pointer

File Changes:

Directory: /dba/dbaccess/source/ui/tabledesign/
===============================================

File [changed]: TableUndo.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/tabledesign/TableUndo.cxx?r1=1.20&r2=1.21
Delta lines:  +5 -5
-------------------
--- TableUndo.cxx       2008-04-10 16:43:43+0000        1.20
+++ TableUndo.cxx       2008-06-25 13:03:15+0000        1.21
@@ -97,8 +97,8 @@
        // Wenn erstes Undo zurueckgenommen wurde, ist Doc nicht modifiziert 
worden
        if( m_pTabDgnCtrl->m_nCurUndoActId == 0 )
        {
-               
m_pTabDgnCtrl->GetView()->getController()->setModified(sal_False);
-               
m_pTabDgnCtrl->GetView()->getController()->InvalidateFeature(SID_SAVEDOC);
+               
m_pTabDgnCtrl->GetView()->getController().setModified(sal_False);
+               
m_pTabDgnCtrl->GetView()->getController().InvalidateFeature(SID_SAVEDOC);
        }
 }
 
@@ -111,8 +111,8 @@
        // Wenn Redo fuer erste Undo-Action, muss Modified-Flag wieder gesetzt 
werden
        if( m_pTabDgnCtrl->m_nCurUndoActId > 0 )
        {
-               
m_pTabDgnCtrl->GetView()->getController()->setModified(sal_True);
-               
m_pTabDgnCtrl->GetView()->getController()->InvalidateFeature(SID_SAVEDOC);
+               m_pTabDgnCtrl->GetView()->getController().setModified(sal_True);
+               
m_pTabDgnCtrl->GetView()->getController().InvalidateFeature(SID_SAVEDOC);
        }
 }
 
//==============================================================================
@@ -151,7 +151,7 @@
                CellControllerRef xController = m_pTabDgnCtrl->Controller();
                if ( xController.Is() )
                        xController->ClearModified();
-               
m_pTabDgnCtrl->GetView()->getController()->setModified(sal_False);
+               
m_pTabDgnCtrl->GetView()->getController().setModified(sal_False);
 
        }
 




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to