Make the glx backend compile again

Still needs some renaming and verification, but this makes it compile at least

Change-Id: Ifb7fc68e8705f235bf0edf2ae9bb38274b693d3c
Reviewed-by: Laszlo Agocs <laszlo.agocs@digia.com>
This commit is contained in:
Jorgen Lind 2014-01-10 11:34:20 +02:00 committed by The Qt Project
parent 1c72063150
commit 003db66339

View File

@ -39,8 +39,8 @@
**
****************************************************************************/
#include <QtWaylandClient/qwaylandclientbufferintegrationplugin.h>
#include "qwaylandxcompositeglxclientbufferintegration.h"
#include <QtWaylandClient/private/qwaylandclientbufferintegrationplugin_p.h>
#include "qwaylandxcompositeglxintegration.h"
QT_BEGIN_NAMESPACE
@ -64,7 +64,7 @@ QWaylandClientBufferIntegration *QWaylandXCompositeGlxClientBufferIntegrationPlu
{
Q_UNUSED(paramList);
if (system.toLower() == "xcomposite-glx")
return new QWaylandXCompositeGLXClientBufferIntegration();
return new QWaylandXCompositeGLXIntegration();
return 0;
}