summaryrefslogtreecommitdiffstats
path: root/qt-ui/mainwindow.cpp
blob: 03e14377f8b6f7ee31ef40235f0f1daa45dad9a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "mainwindow.h"
#include "ui_mainwindow.h"

#include <QVBoxLayout>
#include <QtDebug>

MainWindow::MainWindow() : ui(new Ui::MainWindow())
{
	ui->setupUi(this);
}

void MainWindow::on_actionNew_triggered()
{
    qDebug() << "actionNew";
}