Re-order includes in workspace.cpp
* own > kwin > KDE > Qt * camel case for KDE includes * alphabetic order in the various groups
This commit is contained in:
parent
8a2357d89e
commit
929ba0d9c8
1 changed files with 44 additions and 45 deletions
|
@ -18,60 +18,59 @@ GNU General Public License for more details.
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
// own
|
||||||
//#define QT_CLEAN_NAMESPACE
|
|
||||||
|
|
||||||
#include "workspace.h"
|
#include "workspace.h"
|
||||||
|
// kwin libs
|
||||||
#include <kstartupinfo.h>
|
|
||||||
#include <kconfig.h>
|
|
||||||
#include <kglobal.h>
|
|
||||||
#include <kactioncollection.h>
|
|
||||||
#include <kconfiggroup.h>
|
|
||||||
#include <kcmdlineargs.h>
|
|
||||||
#include <kdeversion.h>
|
|
||||||
#include <QtConcurrentRun>
|
|
||||||
|
|
||||||
#include "client.h"
|
|
||||||
#include "composite.h"
|
|
||||||
#include "decorations.h"
|
|
||||||
#include "focuschain.h"
|
|
||||||
#ifdef KWIN_BUILD_TABBOX
|
|
||||||
#include "tabbox.h"
|
|
||||||
#endif
|
|
||||||
#include "atoms.h"
|
|
||||||
#include "cursor.h"
|
|
||||||
#include "killwindow.h"
|
|
||||||
#include "placement.h"
|
|
||||||
#include "outline.h"
|
|
||||||
#include "group.h"
|
|
||||||
#include "rules.h"
|
|
||||||
#include "dbusinterface.h"
|
|
||||||
#include "unmanaged.h"
|
|
||||||
#include "deleted.h"
|
|
||||||
#include "effects.h"
|
|
||||||
#include "screens.h"
|
|
||||||
#include "useractions.h"
|
|
||||||
#include "virtualdesktops.h"
|
|
||||||
#include "xcbutils.h"
|
|
||||||
#include <kdecorationfactory.h>
|
#include <kdecorationfactory.h>
|
||||||
#include <kwinglplatform.h>
|
#include <kwinglplatform.h>
|
||||||
#ifdef KWIN_BUILD_SCREENEDGES
|
// kwin
|
||||||
#include "screenedge.h"
|
|
||||||
#endif
|
|
||||||
#ifdef KWIN_BUILD_SCRIPTING
|
|
||||||
#include "scripting/scripting.h"
|
|
||||||
#endif
|
|
||||||
#ifdef KWIN_BUILD_ACTIVITIES
|
#ifdef KWIN_BUILD_ACTIVITIES
|
||||||
#include "activities.h"
|
#include "activities.h"
|
||||||
#endif
|
#endif
|
||||||
#ifdef KWIN_BUILD_KAPPMENU
|
#ifdef KWIN_BUILD_KAPPMENU
|
||||||
#include "appmenu.h"
|
#include "appmenu.h"
|
||||||
#endif
|
#endif
|
||||||
|
#include "atoms.h"
|
||||||
#include <kglobalsettings.h>
|
#include "client.h"
|
||||||
#include <kwindowsystem.h>
|
#include "composite.h"
|
||||||
#include <kwindowinfo.h>
|
#include "cursor.h"
|
||||||
|
#include "dbusinterface.h"
|
||||||
|
#include "decorations.h"
|
||||||
|
#include "deleted.h"
|
||||||
|
#include "effects.h"
|
||||||
|
#include "focuschain.h"
|
||||||
|
#include "group.h"
|
||||||
|
#include "killwindow.h"
|
||||||
|
#include "outline.h"
|
||||||
|
#include "placement.h"
|
||||||
|
#include "rules.h"
|
||||||
|
#ifdef KWIN_BUILD_SCREENEDGES
|
||||||
|
#include "screenedge.h"
|
||||||
|
#endif
|
||||||
|
#include "screens.h"
|
||||||
|
#ifdef KWIN_BUILD_SCRIPTING
|
||||||
|
#include "scripting/scripting.h"
|
||||||
|
#endif
|
||||||
|
#ifdef KWIN_BUILD_TABBOX
|
||||||
|
#include "tabbox.h"
|
||||||
|
#endif
|
||||||
|
#include "unmanaged.h"
|
||||||
|
#include "useractions.h"
|
||||||
|
#include "virtualdesktops.h"
|
||||||
|
#include "xcbutils.h"
|
||||||
|
// KDE
|
||||||
|
#include <kdeversion.h>
|
||||||
|
#include <KDE/KActionCollection>
|
||||||
|
#include <KDE/KCmdLineArgs>
|
||||||
|
#include <KDE/KConfig>
|
||||||
|
#include <KDE/KConfigGroup>
|
||||||
|
#include <KDE/KGlobal>
|
||||||
|
#include <KDE/KGlobalSettings>
|
||||||
|
#include <KDE/KStartupInfo>
|
||||||
|
#include <KDE/KWindowInfo>
|
||||||
|
#include <KDE/KWindowSystem>
|
||||||
|
// Qt
|
||||||
|
#include <QtConcurrentRun>
|
||||||
|
|
||||||
namespace KWin
|
namespace KWin
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue