Forget file from previous comit

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4025 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
blacksun
2015-06-21 20:20:27 +00:00
parent 9c6d362637
commit d7d68293d4
2 changed files with 0 additions and 60 deletions

View File

@@ -509,23 +509,4 @@ class ChangeSeveralConductorsPropertiesCommand : public QUndoCommand {
/// track whether post-change properties were set
bool new_settings_set;
};
class ChangeShapeStyleCommand : public QUndoCommand {
//constructor and destructor
public:
ChangeShapeStyleCommand (QetShapeItem *shape, Qt::PenStyle &old_, Qt::PenStyle &new_, QUndoCommand *parent = 0);
virtual ~ChangeShapeStyleCommand();
//methods
public:
virtual void undo();
virtual void redo();
//attributes
private:
QetShapeItem *shape_;
Qt::PenStyle old_style, new_style;
Diagram *diagram;
};
#endif