|
From: <xf...@us...> - 2014-01-11 21:04:54
|
Revision: 1880
http://sourceforge.net/p/scstudio/code/1880
Author: xfarmad
Date: 2014-01-11 21:04:52 +0000 (Sat, 11 Jan 2014)
Log Message:
-----------
bug fix: visualizing diagram with show button in verification report doesn't work
Modified Paths:
--------------
trunk/src/view/visio/addon/shapeutils.cpp
Modified: trunk/src/view/visio/addon/shapeutils.cpp
===================================================================
--- trunk/src/view/visio/addon/shapeutils.cpp 2014-01-04 19:21:28 UTC (rev 1879)
+++ trunk/src/view/visio/addon/shapeutils.cpp 2014-01-11 21:04:52 UTC (rev 1880)
@@ -159,9 +159,9 @@
std::ostringstream color_str;
color_str << "RGB(" << color.getRed() << "," << color.getGreen() << "," << color.getBlue() << ")";
// line color from MscColor struct
- shape->CellsSRC[visSectionObject][visRowLine][visLineColor]->Formula = color_str.str().c_str();
+ shape->CellsSRC[visSectionObject][visRowLine][visLineColor]->FormulaU = color_str.str().c_str();
// text color from MscColor struct
- shape->CellsSRC[visSectionCharacter][visRowCharacter][visCharacterColor]->Formula = color_str.str().c_str();
+ shape->CellsSRC[visSectionCharacter][visRowCharacter][visCharacterColor]->FormulaU = color_str.str().c_str();
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|