Refactoring puzzlecommands

This commit is contained in:
Ronan Le Tiec 2020-05-23 14:12:07 +02:00
parent 5bd695b646
commit e816e4d5a1
4 changed files with 9 additions and 9 deletions

View file

@ -4,9 +4,9 @@
SOURCES += \
$$PWD/dialogs/vpdialogabout.cpp \
$$PWD/main.cpp \
$$PWD/puzzlecommands.cpp \
$$PWD/puzzlemainwindow.cpp \
$$PWD/vpapplication.cpp \
$$PWD/vpcommands.cpp \
$$PWD/vpiececarrouselpiecepreview.cpp \
$$PWD/vpuzzlecommandline.cpp \
$$PWD/vpiececarrousel.cpp \
@ -28,10 +28,10 @@ SOURCES += \
HEADERS += \
$$PWD/dialogs/vpdialogabout.h \
$$PWD/puzzlecommands.h \
$$PWD/puzzlemainwindow.h \
$$PWD/stable.h \
$$PWD/vpapplication.h \
$$PWD/vpcommands.h \
$$PWD/vpiececarrouselpiecepreview.h \
$$PWD/vpuzzlecommandline.h \
$$PWD/vpiececarrousel.h \

View file

@ -1,6 +1,6 @@
/************************************************************************
**
** @file commands.cpp
** @file vpcommands.cpp
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 13 4, 2020
**
@ -25,7 +25,7 @@
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
**
*************************************************************************/
#include "puzzlecommands.h"
#include "vpcommands.h"
#include <QStringList>

View file

@ -1,6 +1,6 @@
/************************************************************************
**
** @file commands.h
** @file vpcommands.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 13 4, 2020
**
@ -25,8 +25,8 @@
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
**
*************************************************************************/
#ifndef COMMANDS_H
#define COMMANDS_H
#ifndef VPCOMMANDS_H
#define VPCOMMANDS_H
#include <QString>
@ -60,4 +60,4 @@ extern const QString LONG_OPTION_TILED_PDF_LANDSCAPE;
QStringList AllKeys();
#endif // COMMANDS_H
#endif // VPCOMMANDS_H

View file

@ -26,7 +26,7 @@
**
*************************************************************************/
#include "vpuzzlecommandline.h"
#include "puzzlecommands.h"
#include "vpcommands.h"
#include "../vmisc/vsysexits.h"
#include "../vmisc/literals.h"
#include <QDebug>