diff options
author | Tobias Koenig <tobias.koenig@kdab.com> | 2015-07-09 11:45:11 +0200 |
---|---|---|
committer | Tobias Koenig <tobias.koenig@kdab.com> | 2015-07-09 09:55:38 +0000 |
commit | f8630e85cd012f48b4dbf362e9ad633603bb80e0 (patch) | |
tree | 98250df981ec65b3960d9c3bde13318a9fb60fb2 | |
parent | e441c5c4d5545a621ff72c43102e1ecc5625b09c (diff) | |
download | qttools-f8630e85cd012f48b4dbf362e9ad633603bb80e0.tar.gz qttools-f8630e85cd012f48b4dbf362e9ad633603bb80e0.tar.bz2 qttools-f8630e85cd012f48b4dbf362e9ad633603bb80e0.zip |
windeployqt: Fix deployment of Q53DInput.dll
Fix the typo in the name of the DLL.
Change-Id: I81df26d837c3294852eba688db701503f95aad66
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
-rw-r--r-- | src/windeployqt/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windeployqt/main.cpp b/src/windeployqt/main.cpp index 8414a9af..b287a44a 100644 --- a/src/windeployqt/main.cpp +++ b/src/windeployqt/main.cpp @@ -155,7 +155,7 @@ QtModuleEntry qtModuleEntries[] = { { Qt3DRendererModule, "3drenderer", "Qt53DRenderer", 0 }, { Qt3DQuickModule, "3dquick", "Qt53DQuick", 0 }, { Qt3DQuickRendererModule, "3dquickrenderer", "Qt53DQuickRenderer", 0 }, - { Qt3DInputModule, "3dinput", "Qt35DInput", 0 }, + { Qt3DInputModule, "3dinput", "Qt53DInput", 0 }, { QtLocationModule, "geoservices", "Qt5Location", 0 } }; |