Commit 3cd089bf authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с Undo/Redo для группировки диаграмм (баг 24653).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56595 954022d7-b5bf-4e40-9824-e11837661b57
parent 158bf3b8
...@@ -7065,6 +7065,11 @@ CChartSpace.prototype = ...@@ -7065,6 +7065,11 @@ CChartSpace.prototype =
this.themeOverride = data.oldPr; this.themeOverride = data.oldPr;
break; break;
} }
case historyitem_ShapeSetGroup:
{
this.group = data.oldPr;
break;
}
} }
}, },
...@@ -7162,6 +7167,11 @@ CChartSpace.prototype = ...@@ -7162,6 +7167,11 @@ CChartSpace.prototype =
this.themeOverride = data.newPr; this.themeOverride = data.newPr;
break; break;
} }
case historyitem_ShapeSetGroup:
{
this.group = data.newPr;
break;
}
} }
}, },
...@@ -7264,6 +7274,12 @@ CChartSpace.prototype = ...@@ -7264,6 +7274,12 @@ CChartSpace.prototype =
writeObject(w, data.oldPr); writeObject(w, data.oldPr);
break; break;
} }
case historyitem_ShapeSetGroup:
{
//TODO: Реализовать!!!!
break;
}
} }
}, },
...@@ -7375,6 +7391,11 @@ CChartSpace.prototype = ...@@ -7375,6 +7391,11 @@ CChartSpace.prototype =
this.themeOverride = readObject(r); this.themeOverride = readObject(r);
break; break;
} }
case historyitem_ShapeSetGroup:
{
//TODO: Реализовать!!!!
break;
}
} }
} }
......
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