src/EditHistory.cc

changeset 640
d4dda62c6600
parent 638
382226e40865
child 642
751a8df42842
equal deleted inserted replaced
639:851634b85893 640:d4dda62c6600
129 // ============================================================================= 129 // =============================================================================
130 // 130 //
131 void AddHistory::undo() const 131 void AddHistory::undo() const
132 { 132 {
133 LDObject* obj = getParent()->getDocument()->getObject (getIndex()); 133 LDObject* obj = getParent()->getDocument()->getObject (getIndex());
134 obj->deleteSelf(); 134 obj->destroy();
135 } 135 }
136 136
137 // ============================================================================= 137 // =============================================================================
138 // 138 //
139 void AddHistory::redo() const 139 void AddHistory::redo() const
162 // ============================================================================= 162 // =============================================================================
163 // 163 //
164 void DelHistory::redo() const 164 void DelHistory::redo() const
165 { 165 {
166 LDObject* obj = getParent()->getDocument()->getObject (getIndex()); 166 LDObject* obj = getParent()->getDocument()->getObject (getIndex());
167 obj->deleteSelf(); 167 obj->destroy();
168 } 168 }
169 169
170 // ============================================================================= 170 // =============================================================================
171 // 171 //
172 void EditHistory::undo() const 172 void EditHistory::undo() const

mercurial