User: kz      
Date: 2008-06-25 12:53:30+0000
Modified:
   dba/dbaccess/source/ui/querydesign/QueryTextView.cxx

Log:
 INTEGRATION: CWS dba30d (1.24.30); FILE MERGED
 2008/05/29 11:30:21 fs 1.24.30.1: during #i80943#: refactoring: IController 
now passed around as reference, not as pointer

File Changes:

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

File [changed]: QueryTextView.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/querydesign/QueryTextView.cxx?r1=1.24&r2=1.25
Delta lines:  +3 -3
-------------------
--- QueryTextView.cxx   2008-04-10 16:23:12+0000        1.24
+++ QueryTextView.cxx   2008-06-25 12:53:28+0000        1.25
@@ -135,7 +135,7 @@
        OSqlEditUndoAct* pUndoAct = new OSqlEditUndoAct( m_pEdit );
 
        pUndoAct->SetOriginalText( m_pEdit->GetText() );
-       
getContainerWindow()->getDesignView()->getController()->addUndoActionAndInvalidate(
 pUndoAct );
+       
getContainerWindow()->getDesignView()->getController().addUndoActionAndInvalidate(
 pUndoAct );
 
        m_pEdit->SetText(String());
 }
@@ -170,13 +170,13 @@
 {
        if(!m_pEdit->IsInAccelAct() )
                m_pEdit->Cut();
-       
getContainerWindow()->getDesignView()->getController()->setModified(sal_True);
+       
getContainerWindow()->getDesignView()->getController().setModified(sal_True);
 }
 // 
-----------------------------------------------------------------------------
 void OQueryTextView::paste()
 {
        if(!m_pEdit->IsInAccelAct() )
                m_pEdit->Paste();
-       
getContainerWindow()->getDesignView()->getController()->setModified(sal_True);
+       
getContainerWindow()->getDesignView()->getController().setModified(sal_True);
 }
 // 
-----------------------------------------------------------------------------




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

Reply via email to