[tools] Fix generation of wayland_pointer_p.h

It was missing the _p suffix.
This commit is contained in:
Martin Gräßlin 2016-10-26 08:44:42 +02:00
parent 971694c28f
commit 945b5f086f

View file

@ -592,7 +592,7 @@ void Generator::generateCppIncludes()
case Project::Client:
*m_stream.localData() << QStringLiteral("#include \"%1.h\"\n").arg(m_baseFileName.toLower());
*m_stream.localData() << QStringLiteral("#include \"event_queue.h\"\n");
*m_stream.localData() << QStringLiteral("#include \"wayland_pointer.h\"\n\n");
*m_stream.localData() << QStringLiteral("#include \"wayland_pointer_p.h\"\n\n");
break;
case Project::Server:
*m_stream.localData() << QStringLiteral("#include \"%1_interface.h\"\n").arg(m_baseFileName.toLower());