Skip to content

Commit

Permalink
[Gui] clean up sloppy merge
Browse files Browse the repository at this point in the history
  • Loading branch information
WandererFan committed Aug 28, 2019
1 parent 13676bf commit 7f26ef7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/Gui/SoFCVectorizeSVGAction.cpp
Expand Up @@ -382,7 +382,6 @@ SoFCVectorizeSVGAction::SoFCVectorizeSVGAction() :
m_lineWidth(1.0),
m_usemm(false)
{
Base::Console().Message("SoFCVSA::SoFCVSA()\n");
SO_ACTION_CONSTRUCTOR(SoFCVectorizeSVGAction);
this->setOutput(new SoSVGVectorOutput);
this->p = new SoFCVectorizeSVGActionP(this);
Expand All @@ -401,7 +400,6 @@ SoFCVectorizeSVGAction::getSVGOutput(void) const

void SoFCVectorizeSVGAction::printHeader(void) const
{
Base::Console().Message("SoFCVSA::printHeader()\n");
std::ostream& str = this->getSVGOutput()->getFileStream();
str << "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>" << std::endl;
str << "<!-- Created with FreeCAD (http://www.freecadweb.org) -->" << std::endl;
Expand Down Expand Up @@ -435,8 +433,9 @@ void SoFCVectorizeSVGAction::printViewport(void) const

void SoFCVectorizeSVGAction::printBackground(void) const
{
Base::Console().Message("SoFCVSA::printBackground()\n");

if (!getBackgroundState()) {
return;
}
SbVec2f mul = getRotatedViewportSize();
SbVec2f add = getRotatedViewportStartpos();

Expand Down

0 comments on commit 7f26ef7

Please sign in to comment.