diff options
Diffstat (limited to 'modules/qt4.py')
-rw-r--r-- | modules/qt4.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/qt4.py b/modules/qt4.py index ddaca39..ebc7a13 100644 --- a/modules/qt4.py +++ b/modules/qt4.py @@ -18,8 +18,7 @@ import build from coredata import MesonException import xml.etree.ElementTree as ET -class Qt5Module(): - +class Qt4Module(): def __init__(self): mlog.log('Detecting Qt tools.') # The binaries have different names on different @@ -152,4 +151,4 @@ class Qt5Module(): def initialize(): mlog.log('Warning, rcc dependencies will not work properly until this upstream issue is fixed:', mlog.bold('https://bugreports.qt.io/browse/QTBUG-45460')) - return Qt5Module() + return Qt4Module() |