From 96c6d5072dc6637d787725701c9e3043b9f9717c Mon Sep 17 00:00:00 2001 From: Rafael Date: Mon, 28 Mar 2016 13:27:45 +0200 Subject: [PATCH] fixed StandardPaths commit lag --- StandardPaths.h | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/StandardPaths.h b/StandardPaths.h index e612640..e3c2386 100755 --- a/StandardPaths.h +++ b/StandardPaths.h @@ -15,14 +15,19 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . *****************************************************************************/ + #ifndef STANDARDPATHS_H #define STANDARDPATHS_H -#include -#if QT_VERSION >= 0x050000 -#include "StandardPaths5.h" -#else -#include "StandardPaths4.h" -#endif +#include + +class StandardPaths +{ +public: + StandardPaths(); + static QString dataLocation(); + static QString desktopLocation(); + static QString documentsLocation(); +}; #endif // STANDARDPATHS_H