summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/tabledesign/TableUndo.hxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2006-05-04 07:52:07 +0000
committerRüdiger Timm <rt@openoffice.org>2006-05-04 07:52:07 +0000
commit0f563aed3a4ff35a30bf378324deba530d509c9c (patch)
tree4a3d472f90081da18cfa492f3ade12432450bba9 /dbaccess/source/ui/tabledesign/TableUndo.hxx
parent6a465344179111c753e17fe0d74523e9aaaaa074 (diff)
INTEGRATION: CWS dba203c (1.6.108); FILE MERGED
2006/04/13 13:57:19 oj 1.6.108.1: hold TableRow now with a shared_ptr
Diffstat (limited to 'dbaccess/source/ui/tabledesign/TableUndo.hxx')
-rw-r--r--dbaccess/source/ui/tabledesign/TableUndo.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/dbaccess/source/ui/tabledesign/TableUndo.hxx b/dbaccess/source/ui/tabledesign/TableUndo.hxx
index 50f5f785850e..8ff377788893 100644
--- a/dbaccess/source/ui/tabledesign/TableUndo.hxx
+++ b/dbaccess/source/ui/tabledesign/TableUndo.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: TableUndo.hxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 16:43:26 $
+ * last change: $Author: rt $ $Date: 2006-05-04 08:52:07 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -122,7 +122,7 @@ namespace dbaui
class OTableEditorDelUndoAct : public OTableEditorUndoAct
{
protected:
- ::std::vector<OTableRow*> m_aDeletedRows;
+ ::std::vector< ::boost::shared_ptr<OTableRow> > m_aDeletedRows;
virtual void Undo();
virtual void Redo();
@@ -136,7 +136,7 @@ namespace dbaui
class OTableEditorInsUndoAct : public OTableEditorUndoAct
{
protected:
- ::std::vector<OTableRow*> m_vInsertedRows;
+ ::std::vector< ::boost::shared_ptr<OTableRow> > m_vInsertedRows;
long m_nInsPos;
virtual void Undo();
@@ -145,7 +145,7 @@ namespace dbaui
TYPEINFO();
OTableEditorInsUndoAct( OTableEditorCtrl* pOwner,
long nInsertPosition,
- const ::std::vector< OTableRow*>& _vInsertedRows);
+ const ::std::vector< ::boost::shared_ptr<OTableRow> >& _vInsertedRows);
virtual ~OTableEditorInsUndoAct();
};