1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 18:56:34 +01:00

Update processinfo.h

Cleanup the includes:
QtGlobal is not needed - already pulled in by qzcommon.h
QString not needed, already pulled in by qzcommon.h
Move the qzcommon include before the ifdefs

This is a change that has been getting used when building QupZilla on FreeBSD for several years now and works fine.
This commit is contained in:
Ken Moore 2017-09-19 09:19:02 -04:00 committed by David Rosca
parent 626e8c5f8a
commit c75324f379

View File

@ -18,16 +18,12 @@
#ifndef PROCESSINFO_H #ifndef PROCESSINFO_H
#define PROCESSINFO_H #define PROCESSINFO_H
#include <QtGlobal> #include "qzcommon.h"
#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) #if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS)
#include <sys/types.h> #include <sys/types.h>
#endif #endif
#include <QString>
#include "qzcommon.h"
/* /*
* Code used from http://ubuntuforums.org/showpost.php?p=6593782&postcount=5 * Code used from http://ubuntuforums.org/showpost.php?p=6593782&postcount=5
* written by user WitchCraft * written by user WitchCraft