summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/code/src_corelib_animation_qsequentialanimationgroup.cpp
blob: a429fe20b2ddca74dd56e52545bfec2f3b290053 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [0]
    QSequentialAnimationGroup *group = new QSequentialAnimationGroup;

    group->addAnimation(anim1);
    group->addAnimation(anim2);

    group->start();
//! [0]