forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The usage of c-like include is deprecated on modern Qt versions. Use the c++ style includes. While here, remove uneeded and redundant ones, sorting them on alphabetic order. Signed-off-by: Mauro Carvalho Chehab <[email protected]> Signed-off-by: Masahiro Yamada <[email protected]>
- Loading branch information
Showing
2 changed files
with
16 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,27 +4,18 @@ | |
* Copyright (C) 2015 Boris Barbulovski <[email protected]> | ||
*/ | ||
|
||
#include <qglobal.h> | ||
|
||
#include <QMainWindow> | ||
#include <QList> | ||
#include <qtextbrowser.h> | ||
#include <QAction> | ||
#include <QApplication> | ||
#include <QCloseEvent> | ||
#include <QDesktopWidget> | ||
#include <QFileDialog> | ||
#include <QLabel> | ||
#include <QLayout> | ||
#include <QList> | ||
#include <QMenu> | ||
|
||
#include <qapplication.h> | ||
#include <qdesktopwidget.h> | ||
#include <qtoolbar.h> | ||
#include <qlayout.h> | ||
#include <qsplitter.h> | ||
#include <qlineedit.h> | ||
#include <qlabel.h> | ||
#include <qpushbutton.h> | ||
#include <qmenubar.h> | ||
#include <qmessagebox.h> | ||
#include <qregexp.h> | ||
#include <qevent.h> | ||
#include <QMenuBar> | ||
#include <QMessageBox> | ||
#include <QToolBar> | ||
|
||
#include <stdlib.h> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,17 +3,17 @@ | |
* Copyright (C) 2002 Roman Zippel <[email protected]> | ||
*/ | ||
|
||
#include <QTextBrowser> | ||
#include <QTreeWidget> | ||
#include <QMainWindow> | ||
#include <QCheckBox> | ||
#include <QDialog> | ||
#include <QHeaderView> | ||
#include <qsettings.h> | ||
#include <QLineEdit> | ||
#include <QMainWindow> | ||
#include <QPushButton> | ||
#include <QSettings> | ||
#include <QLineEdit> | ||
#include <QSplitter> | ||
#include <QCheckBox> | ||
#include <QDialog> | ||
#include <QTextBrowser> | ||
#include <QTreeWidget> | ||
|
||
#include "expr.h" | ||
|
||
class ConfigView; | ||
|