mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 06:44:18 +00:00
23 lines
409 B
C++
23 lines
409 B
C++
/*
|
|
SPDX-FileCopyrightText: 2011 Lionel Chauvin <megabigbug@yahoo.fr>
|
|
SPDX-FileCopyrightText: 2011, 2012 Cédric Bellegarde <gnumdk@gmail.com>
|
|
|
|
SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include "verticalmenu.h"
|
|
|
|
#include <QCoreApplication>
|
|
#include <QEvent>
|
|
#include <QKeyEvent>
|
|
#include <QMouseEvent>
|
|
|
|
VerticalMenu::VerticalMenu(QWidget *parent)
|
|
: QMenu(parent)
|
|
{
|
|
}
|
|
|
|
VerticalMenu::~VerticalMenu()
|
|
{
|
|
}
|