summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/tabledesign/TableUndo.hxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-03-22 06:56:56 +0000
committerOcke Janssen <oj@openoffice.org>2001-03-22 06:56:56 +0000
commit649cf8d00a580f12ad81442a86ce152bbbd77bdb (patch)
tree55af8d2dc538b637444f4ee8367575caea6849b2 /dbaccess/source/ui/tabledesign/TableUndo.hxx
parent3eef7c59c658e4eb04dfc03175164d39b5bff1a9 (diff)
allow copyctr
Diffstat (limited to 'dbaccess/source/ui/tabledesign/TableUndo.hxx')
-rw-r--r--dbaccess/source/ui/tabledesign/TableUndo.hxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/dbaccess/source/ui/tabledesign/TableUndo.hxx b/dbaccess/source/ui/tabledesign/TableUndo.hxx
index 36c81c27fc65..21209d71b8e7 100644
--- a/dbaccess/source/ui/tabledesign/TableUndo.hxx
+++ b/dbaccess/source/ui/tabledesign/TableUndo.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: TableUndo.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: oj $ $Date: 2001-02-14 14:24:50 $
+ * last change: $Author: oj $ $Date: 2001-03-22 07:56:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -151,13 +151,15 @@ namespace dbaui
class OTableEditorInsUndoAct : public OTableEditorUndoAct
{
protected:
- ::std::vector<OTableRow*> m_aInsertedRows;
+ ::std::vector<OTableRow*> m_vInsertedRows;
long m_nInsPos;
virtual void Undo();
virtual void Redo();
public:
- OTableEditorInsUndoAct( OTableEditorCtrl* pOwner, long nInsertPosition );
+ OTableEditorInsUndoAct( OTableEditorCtrl* pOwner,
+ long nInsertPosition,
+ const ::std::vector< OTableRow*>& _vInsertedRows);
virtual ~OTableEditorInsUndoAct();
};