summaryrefslogtreecommitdiffstats
path: root/src/gui/doc/snippets/code/src_gui_kernel_qaction.cpp
blob: 054b40d7c0778f6ddfd81e6e3391c01fa83b1fdc (plain)
123456789101112
// Copyright (C) 2016 The Qt Company Ltd.// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause//! [0] QApplication app(argc, argv); app.setAttribute(Qt::AA_DontShowIconsInMenus);// Icons are *no longer shown* in menus// ... QAction *myAction =newQAction();// ... myAction->setIcon(SomeIcon); myAction->setIconVisibleInMenu(true);// Icon *will* be shown in menus for *this* action.//! [0]
close