Commit 6ddb6210 authored by SergeyLuzyanin's avatar SergeyLuzyanin

fix bug 35136

parent a468c406
...@@ -5388,7 +5388,7 @@ CShape.prototype.getColumnNumber = function(){ ...@@ -5388,7 +5388,7 @@ CShape.prototype.getColumnNumber = function(){
var new_body_pr = this.getBodyPr(); var new_body_pr = this.getBodyPr();
if (new_body_pr) { if (new_body_pr) {
new_body_pr = new_body_pr.createDuplicate(); new_body_pr = new_body_pr.createDuplicate();
new_body_pr.numCol = num; new_body_pr.numCol = (num >> 0);
if(!this.txBody){ if(!this.txBody){
this.createTextBody(); this.createTextBody();
......
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