Kaydet (Commit) cdce3ce3 authored tarafından Rüdiger Timm's avatar Rüdiger Timm

INTEGRATION: CWS dba203c (1.15.4); FILE MERGED

2006/04/24 13:46:44 oj 1.15.4.2: RESYNC: (1.15-1.16); FILE MERGED
2006/04/13 13:57:19 oj 1.15.4.1: hold TableRow now with a shared_ptr
üst 188dff35
......@@ -4,9 +4,9 @@
*
* $RCSfile: TEditControl.hxx,v $
*
* $Revision: 1.16 $
* $Revision: 1.17 $
*
* last change: $Author: vg $ $Date: 2006-03-31 09:20:38 $
* last change: $Author: rt $ $Date: 2006-05-04 08:49:19 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
......@@ -70,8 +70,8 @@ namespace dbaui
NONE
};
::std::vector<OTableRow*> m_aUndoList;
::std::vector<OTableRow*>* m_pRowList;
::std::vector< ::boost::shared_ptr<OTableRow> > m_aUndoList;
::std::vector< ::boost::shared_ptr<OTableRow> >* m_pRowList;
EEditMode eEditMode;
......@@ -80,7 +80,7 @@ namespace dbaui
Edit* pDescrCell;
OTableFieldDescWin* pDescrWin; // properties of one column
OTableRow* pActRow;
::boost::shared_ptr<OTableRow> pActRow;
ULONG nIndexEvent;
ULONG nCutEvent;
......@@ -174,9 +174,9 @@ namespace dbaui
virtual OTableDesignView* GetView() const;
::std::vector<OTableRow*>* GetRowList(){ return m_pRowList; }
::std::vector< ::boost::shared_ptr<OTableRow> >* GetRowList(){ return m_pRowList; }
OTableRow* GetActRow(){ return pActRow; }
::boost::shared_ptr<OTableRow> GetActRow(){ return pActRow; }
void CellModified( long nRow, sal_uInt16 nColId );
void SetReadOnly( BOOL bRead=TRUE );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment