Description: Replace hard coded plugin IID string Replace hard coded string with QPlatformInputContextFactoryInterface_iid, this fixes compatibility with Qt 5.5 where this string has changed. Author: Michael Sheldon Bug: https://github.com/maliit/framework/issues/13 Bug-Ubuntu: https://launchpad.net/bugs/1474690 Forwarded: https://github.com/maliit/framework/pull/14 --- maliit-framework-0.99.0+git20130923+17fdf86.orig/input-context/main.cpp +++ maliit-framework-0.99.0+git20130923+17fdf86/input-context/main.cpp @@ -22,7 +22,7 @@ class MaliitPlatformInputContextPlugin: public QPlatformInputContextPlugin { Q_OBJECT - Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QPlatformInputContextFactoryInterface" FILE "maliit.json") + Q_PLUGIN_METADATA(IID QPlatformInputContextFactoryInterface_iid FILE "maliit.json") public: QPlatformInputContext *create(const QString&, const QStringList&);