eglfs: rename QEglIntegration to QEglFSIntegration

Change-Id: Ifa096537d417571ed660a63a501fed188186f400
Reviewed-by: Donald Carr <donald.carr@nokia.com>
Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
bb10
Girish Ramakrishnan 2012-05-27 09:39:58 -07:00 committed by Qt by Nokia
parent 095000c898
commit 42f4fa60f3
2 changed files with 6 additions and 6 deletions

View File

@ -44,7 +44,7 @@
QT_BEGIN_NAMESPACE
class QEglIntegrationPlugin : public QPlatformIntegrationPlugin
class QEglFSIntegrationPlugin : public QPlatformIntegrationPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QPlatformIntegrationFactoryInterface" FILE "eglfs.json")
@ -53,14 +53,14 @@ public:
QPlatformIntegration *create(const QString&, const QStringList&);
};
QStringList QEglIntegrationPlugin::keys() const
QStringList QEglFSIntegrationPlugin::keys() const
{
QStringList list;
list << "EglFS";
return list;
}
QPlatformIntegration* QEglIntegrationPlugin::create(const QString& system, const QStringList& paramList)
QPlatformIntegration* QEglFSIntegrationPlugin::create(const QString& system, const QStringList& paramList)
{
Q_UNUSED(paramList);
if (system.toLower() == "eglfs")

View File

@ -65,7 +65,7 @@ QEglFSIntegration::QEglFSIntegration()
screenAdded(mScreen);
#ifdef QEGL_EXTRA_DEBUG
qWarning("QEglIntegration\n");
qWarning("QEglFSIntegration\n");
#endif
}
@ -91,7 +91,7 @@ bool QEglFSIntegration::hasCapability(QPlatformIntegration::Capability cap) cons
QPlatformWindow *QEglFSIntegration::createPlatformWindow(QWindow *window) const
{
#ifdef QEGL_EXTRA_DEBUG
qWarning("QEglIntegration::createPlatformWindow %p\n",window);
qWarning("QEglFSIntegration::createPlatformWindow %p\n",window);
#endif
QPlatformWindow *w = new QEglFSWindow(window);
w->requestActivateWindow();
@ -103,7 +103,7 @@ QPlatformWindow *QEglFSIntegration::createPlatformWindow(QWindow *window) const
QPlatformBackingStore *QEglFSIntegration::createPlatformBackingStore(QWindow *window) const
{
#ifdef QEGL_EXTRA_DEBUG
qWarning("QEglIntegration::createWindowSurface %p\n", window);
qWarning("QEglFSIntegration::createWindowSurface %p\n", window);
#endif
return new QEglFSBackingStore(window);
}