File name cleanup (#4154)

This commit is contained in:
tooomm 2020-11-02 01:03:08 +01:00 committed by GitHub
parent 8e9d4e3a67
commit 0405c82cb2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View file

@ -18,6 +18,7 @@ SET(cockatrice_SOURCES
src/dlg_forgotpasswordrequest.cpp src/dlg_forgotpasswordrequest.cpp
src/dlg_forgotpasswordreset.cpp src/dlg_forgotpasswordreset.cpp
src/dlg_forgotpasswordchallenge.cpp src/dlg_forgotpasswordchallenge.cpp
src/dlg_manage_sets.cpp
src/dlg_register.cpp src/dlg_register.cpp
src/dlg_tip_of_the_day.cpp src/dlg_tip_of_the_day.cpp
src/tip_of_the_day.cpp src/tip_of_the_day.cpp
@ -62,7 +63,6 @@ SET(cockatrice_SOURCES
src/carddragitem.cpp src/carddragitem.cpp
src/carddatabasemodel.cpp src/carddatabasemodel.cpp
src/setsmodel.cpp src/setsmodel.cpp
src/window_sets.cpp
src/abstractgraphicsitem.cpp src/abstractgraphicsitem.cpp
src/abstractcarddragitem.cpp src/abstractcarddragitem.cpp
src/dlg_settings.cpp src/dlg_settings.cpp

View file

@ -1,4 +1,4 @@
#include "window_sets.h" #include "dlg_manage_sets.h"
#include "customlineedit.h" #include "customlineedit.h"
#include "main.h" #include "main.h"

View file

@ -1,5 +1,5 @@
#ifndef WINDOW_SETS_H #ifndef DLG_MANAGE_SETS_H
#define WINDOW_SETS_H #define DLG_MANAGE_SETS_H
#include <QDialogButtonBox> #include <QDialogButtonBox>
#include <QGridLayout> #include <QGridLayout>

View file

@ -9,6 +9,7 @@
#include "deckview.h" #include "deckview.h"
#include "dlg_creategame.h" #include "dlg_creategame.h"
#include "dlg_load_remote_deck.h" #include "dlg_load_remote_deck.h"
#include "dlg_manage_sets.h"
#include "gamescene.h" #include "gamescene.h"
#include "gameview.h" #include "gameview.h"
#include "get_pb_extension.h" #include "get_pb_extension.h"
@ -52,7 +53,6 @@
#include "replay_timeline_widget.h" #include "replay_timeline_widget.h"
#include "settingscache.h" #include "settingscache.h"
#include "tab_supervisor.h" #include "tab_supervisor.h"
#include "window_sets.h"
#include "zoneviewwidget.h" #include "zoneviewwidget.h"
#include "zoneviewzone.h" #include "zoneviewzone.h"

View file

@ -2,10 +2,10 @@
#include "abstractclient.h" #include "abstractclient.h"
#include "customlineedit.h" #include "customlineedit.h"
#include "dlg_manage_sets.h"
#include "pb/moderator_commands.pb.h" #include "pb/moderator_commands.pb.h"
#include "pb/response_viewlog_history.pb.h" #include "pb/response_viewlog_history.pb.h"
#include "pending_command.h" #include "pending_command.h"
#include "window_sets.h"
#include <QCheckBox> #include <QCheckBox>
#include <QDialogButtonBox> #include <QDialogButtonBox>

View file

@ -25,6 +25,7 @@
#include "dlg_forgotpasswordchallenge.h" #include "dlg_forgotpasswordchallenge.h"
#include "dlg_forgotpasswordrequest.h" #include "dlg_forgotpasswordrequest.h"
#include "dlg_forgotpasswordreset.h" #include "dlg_forgotpasswordreset.h"
#include "dlg_manage_sets.h"
#include "dlg_register.h" #include "dlg_register.h"
#include "dlg_settings.h" #include "dlg_settings.h"
#include "dlg_tip_of_the_day.h" #include "dlg_tip_of_the_day.h"
@ -44,7 +45,6 @@
#include "tab_game.h" #include "tab_game.h"
#include "tab_supervisor.h" #include "tab_supervisor.h"
#include "version_string.h" #include "version_string.h"
#include "window_sets.h"
#include <QAction> #include <QAction>
#include <QApplication> #include <QApplication>