Replace a couple more Qt 5 references

This commit is contained in:
Kovid Goyal 2021-11-21 12:28:13 +05:30
parent c4122f6f47
commit 2be7b7e899
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View file

@ -53,7 +53,7 @@
dlls += ['WinExtras']
QT_DLLS = frozenset(
'Qt5' + x for x in dlls
'Qt6' + x for x in dlls
)
QT_PLUGINS = [

View file

@ -17,7 +17,7 @@
def qt_sources():
qtdir = os.environ.get('QT_SRC', '/usr/src/qt5/qtbase')
qtdir = os.environ.get('QT_SRC', '/usr/src/qt6/qtbase')
j = partial(os.path.join, qtdir)
return list(map(j, [
'src/gui/kernel/qplatformtheme.cpp',