clangify everything with the new header sorting (#3908)

This commit is contained in:
ebbit1q 2020-03-18 22:36:02 +01:00 committed by GitHub
parent 1eb766b9d8
commit 18a07274d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
192 changed files with 481 additions and 282 deletions

View file

@ -1,20 +1,7 @@
#include "user_context_menu.h"
#include "abstractclient.h"
#include "gameselector.h"
#include "pending_command.h"
#include "tab_game.h"
#include "tab_supervisor.h"
#include "tab_userlists.h"
#include "userinfobox.h"
#include "userlist.h"
#include <QAction>
#include <QMenu>
#include <QMessageBox>
#include <QSignalMapper>
#include <QtGui>
#include <QtWidgets>
#include "pb/command_kick_from_game.pb.h"
#include "pb/commands.pb.h"
#include "pb/moderator_commands.pb.h"
@ -24,6 +11,19 @@
#include "pb/response_warn_history.pb.h"
#include "pb/response_warn_list.pb.h"
#include "pb/session_commands.pb.h"
#include "pending_command.h"
#include "tab_game.h"
#include "tab_supervisor.h"
#include "tab_userlists.h"
#include "userinfobox.h"
#include "userlist.h"
#include <QAction>
#include <QMenu>
#include <QMessageBox>
#include <QSignalMapper>
#include <QtGui>
#include <QtWidgets>
UserContextMenu::UserContextMenu(const TabSupervisor *_tabSupervisor, QWidget *parent, TabGame *_game)
: QObject(parent), client(_tabSupervisor->getClient()), tabSupervisor(_tabSupervisor), game(_game)