Überarbeitung

Gramatik
Laden Bilder
This commit is contained in:
AshBastian
2019-12-04 14:54:20 +01:00
parent 8b88626cdf
commit 32df5b59a5
31 changed files with 5243 additions and 31 deletions

View File

@@ -143,7 +143,7 @@ void IntelliPhotoGui::createActions()
// Create exit action and tie to IntelliPhotoGui::close()
exitAct = new QAction(tr("E&xit"), this);
exitAct = new QAction(tr("&Exit"), this);
exitAct->setShortcuts(QKeySequence::Quit);
connect(exitAct, SIGNAL(triggered()), this, SLOT(close()));

View File

@@ -3,8 +3,8 @@
#include <QList>
#include <QMainWindow>
#include<QGridLayout>
#include<QPushButton>
#include <QGridLayout>
#include <QPushButton>
// PaintingArea used to paint the image
class PaintingArea;