diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-04-30 02:11:23 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-04-30 02:11:23 +0300 |
commit | 075b25424eed8efbfc8e8b65bd923add98d552d7 (patch) | |
tree | cc9c0f578347cf07f3ebeb6a04a73d321138f475 /modules | |
parent | 45d7b589ebfe4f87bad175d3c2e663423b6b3377 (diff) | |
download | meson-075b25424eed8efbfc8e8b65bd923add98d552d7.zip meson-075b25424eed8efbfc8e8b65bd923add98d552d7.tar.gz meson-075b25424eed8efbfc8e8b65bd923add98d552d7.tar.bz2 |
Typo fixes.
Diffstat (limited to 'modules')
-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() |