fix links http: -> https:

This commit is contained in:
Metallicow
2020-01-20 23:00:08 -06:00
parent c51cdd2334
commit 733c38850b
2 changed files with 3 additions and 3 deletions

View File

@@ -926,11 +926,11 @@ class ModernDockArt(AuiDefaultDockArt):
"""
ModernDockArt is a custom `AuiDockArt` class, that implements a look similar to Firefox and other recents applications.
Is uses the `winxptheme <http://sourceforge.net/projects/pywin32/>`_ module and
Is uses the `winxptheme <https://sourceforge.net/projects/pywin32/>`_ module and
XP themes whenever possible, so it should look good even if the user has a custom theme.
:note: This dock art is Windows only and will only work if you have installed
Mark Hammond's `pywin32` module (http://sourceforge.net/projects/pywin32/).
Mark Hammond's `pywin32` module (https://sourceforge.net/projects/pywin32/).
"""
def __init__(self, win):

View File

@@ -4648,7 +4648,7 @@ class AuiManager(wx.EvtHandler):
def CanUseModernDockArt(self):
"""
Returns whether :class:`dockart` can be used (Windows XP / Vista / 7 only,
requires Mark Hammonds's `pywin32 <http://sourceforge.net/projects/pywin32/>`_ package).
requires Mark Hammonds's `pywin32 <https://sourceforge.net/projects/pywin32/>`_ package).
"""
if not _winxptheme: