Skip to content

Commit

Permalink
Moved comments with discussion links into module docstring, and rearr…
Browse files Browse the repository at this point in the history
…anged.
  • Loading branch information
XLTechie committed Jun 24, 2021
1 parent 0ea0fb8 commit 24d484c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions source/COMRegistrationFixes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
# This file is covered by the GNU General Public License.
# See the file COPYING for more details.

"""Utilities to re-register particular system COM interfaces needed by NVDA."""
"""Utilities to re-register particular system COM interfaces needed by NVDA.
Relevant discussions of DLLs, registry keys, and paths, can be found on these issues:
https://github.com/nvaccess/nvda/issues/2807#issuecomment-320149243
https://github.com/nvaccess/nvda/issues/9039
https://github.com/nvaccess/nvda/issues/12560
"""

import os
import subprocess
Expand Down Expand Up @@ -100,8 +105,6 @@ def fixCOMRegistrations():
f"Fixing COM registrations for Windows {OSMajorMinor[0]}.{OSMajorMinor[1]}, "
"{} bit.".format("64" if is64bit else "32")
)
# Commands taken from NVDA issue #2807 comment https://github.com/nvaccess/nvda/issues/2807#issuecomment-320149243
# And also the discussions in #9039 https://github.com/nvaccess/nvda/issues/9039
# OLEACC (MSAA) proxies
apply32bitRegistryPatch(OLEACC_REG_FILE_PATH)
if is64bit:
Expand Down

0 comments on commit 24d484c

Please sign in to comment.