Skip to content

Commit a188cee

Browse files
committedMar 6, 2017
fix typo
1 parent 09f83c2 commit a188cee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/dwg/libdxfrw/drw_entities.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1698,7 +1698,7 @@ bool DRW_Text::parseDwg( DRW::Version version, dwgBuffer *buf, duint32 bs )
16981698
else //14-
16991699
{
17001700
oblique = buf->getBitDouble(); /* Oblique angle BD 51 */
1701-
anglele = buf->getBitDouble(); /* Rotation angle BD 50 */
1701+
angle = buf->getBitDouble(); /* Rotation angle BD 50 */
17021702
height = buf->getBitDouble(); /* Height BD 40 */
17031703
widthscale = buf->getBitDouble(); /* Width factor BD 41 */
17041704
}

6 commit comments

Comments
 (6)

jef-n commented on Mar 6, 2017

@jef-n
Member

sorry and thanks

3nids commented on Mar 7, 2017

@3nids
MemberAuthor

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

jef-n commented on Mar 7, 2017

@jef-n
Member

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

3nids commented on Mar 7, 2017

@3nids
MemberAuthor

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 commented on Mar 7, 2017

@3nids
MemberAuthor

will do

3nids commented on Mar 7, 2017

@3nids
MemberAuthor

should be fixed in e23dcc8

Please sign in to comment.