summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/basicshapes-cpp
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2016-08-11 12:21:55 +0200
committerPaul Lemire <paul.lemire@kdab.com>2016-08-11 20:18:34 +0000
commitdc478967e91a0b39f1262a35de1c51f2c529fba6 (patch)
tree0b774985cc6b1662be05f6ba3760d5224222bebc /examples/qt3d/basicshapes-cpp
parent600e67c2836aae5dcd22948e657fc9a6c5c068ee (diff)
Qt3DWindow rename defaultFramegraph to defaultFrameGraph
For coherency with other function names. This kind of API change is allowed since Qt3DWindow is in the Extras module which is still in tech preview for 5.7 Change-Id: Ic67f96cfb2dfcb3b2d724c97f2cf472bfaf40a07 Task-number: QTBUG-54841 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'examples/qt3d/basicshapes-cpp')
-rw-r--r--examples/qt3d/basicshapes-cpp/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/qt3d/basicshapes-cpp/main.cpp b/examples/qt3d/basicshapes-cpp/main.cpp
index 301aabb66..b4b01ff30 100644
--- a/examples/qt3d/basicshapes-cpp/main.cpp
+++ b/examples/qt3d/basicshapes-cpp/main.cpp
@@ -87,7 +87,7 @@ int main(int argc, char **argv)
{
QApplication app(argc, argv);
Qt3DExtras::Qt3DWindow *view = new Qt3DExtras::Qt3DWindow();
- view->defaultFramegraph()->setClearColor(QColor(QRgb(0x4d4d4f)));
+ view->defaultFrameGraph()->setClearColor(QColor(QRgb(0x4d4d4f)));
QWidget *container = QWidget::createWindowContainer(view);
QSize screenSize = view->screen()->size();
container->setMinimumSize(QSize(200, 100));