3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-22 07:05:54 +00:00
Scare Crowe d2ebfd0519 QortalOS Titan 5.60.12
Screw the description like that inbred T3Q
2022-03-05 21:17:59 +05:00

38 lines
584 B
C++

/*
SPDX-FileCopyrightText: 2014 Eike Hein <hein@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "menuhelper.h"
#include <QAction>
#include <QMenu>
MenuHelper::MenuHelper(QObject *parent)
: QObject(parent)
{
}
MenuHelper::~MenuHelper()
{
}
QString MenuHelper::iconName(QAction *action) const
{
if (!action) {
return QString();
}
return action->icon().name();
}
void MenuHelper::setMenu(QAction *action, QObject *menu)
{
QMenu *bla = qobject_cast<QMenu *>(menu);
if (action && bla) {
action->setMenu(bla);
}
}