Skip to content

Commit 59a2542

Browse files
committed
format code
1 parent 4b25bee commit 59a2542

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

LICENSE.txt

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
GNU LESSER GENERAL PUBLIC LICENSE
22
Version 3, 29 June 2007
33

4-
Copyright (C) 2023-2024 The PyRx devlopment team
5-
64
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
75
Everyone is permitted to copy and distribute verbatim copies
86
of this license document, but changing it is not allowed.

PyRxCore/EdCore.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1424,7 +1424,7 @@ AcGePoint3d EdCore::getMousePositionUCS()
14241424

14251425
resbuf torb;
14261426
torb.restype = RTSHORT;
1427-
torb.resval.rint = 1; // WCS
1427+
torb.resval.rint = 1; // UCS
14281428

14291429
AcGePoint3d hitPoint;
14301430
acedTrans(cpt, &fromrb, &torb, FALSE, asDblArray(hitPoint));

PyRxCore/PyRxOverrule.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using namespace boost::python;
55

66
//-----------------------------------------------------------------------------------------
7-
//PyRxOverruleBase
7+
//AcRxOverrule
88
void makePyRxOverruleWrapper()
99
{
1010
PyDocString DS("Overrule");
@@ -57,7 +57,7 @@ bool PyRxOverrule::hasOverrule(PyRxObject& pSubject, PyRxClass& pOverruleClass)
5757

5858
std::string PyRxOverrule::className()
5959
{
60-
return "AcRxOverruleBase";
60+
return "AcRxOverrule";
6161
}
6262

6363
PyRxClass PyRxOverrule::desc()

PyRxCore/PyRxOverrule.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "PyRxObject.h"
44

55
//-----------------------------------------------------------------------------------------
6-
//PyRxOverruleBase
6+
//AcRxOverrule
77
void makePyRxOverruleWrapper();
88

99
class PyRxOverrule :public PyRxObject

0 commit comments

Comments
 (0)