Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Mar 6, 2017
1 parent 09f83c2 commit a188cee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/dwg/libdxfrw/drw_entities.cpp
Expand Up @@ -1698,7 +1698,7 @@ bool DRW_Text::parseDwg( DRW::Version version, dwgBuffer *buf, duint32 bs )
else //14-
{
oblique = buf->getBitDouble(); /* Oblique angle BD 51 */
anglele = buf->getBitDouble(); /* Rotation angle BD 50 */
angle = buf->getBitDouble(); /* Rotation angle BD 50 */
height = buf->getBitDouble(); /* Height BD 40 */
widthscale = buf->getBitDouble(); /* Width factor BD 41 */
}
Expand Down

6 comments on commit a188cee

@jef-n
Copy link
Member

@jef-n jef-n commented on a188cee Mar 6, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sorry and thanks

@3nids
Copy link
Member Author

@3nids 3nids commented on a188cee Mar 7, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm sorry for this spelling script error!
Not sure fixing it is worth is though.

@jef-n
Copy link
Member

@jef-n jef-n commented on a188cee Mar 7, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0d7f697 should do it - we only replace words, don't we?

@3nids
Copy link
Member Author

@3nids 3nids commented on a188cee Mar 7, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nope, we also replace in words (in camel case but not only).
the solution to fix this would be to include previous and next character in the error string and add them in the sed command.

@3nids
Copy link
Member Author

@3nids 3nids commented on a188cee Mar 7, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will do

@3nids
Copy link
Member Author

@3nids 3nids commented on a188cee Mar 7, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should be fixed in e23dcc8

Please sign in to comment.