fixed includes

This commit is contained in:
Martchus 2015-09-06 20:33:09 +02:00
parent 8f2bd78b47
commit 90d37aeaa9
16 changed files with 34 additions and 30 deletions

View File

@ -1,4 +1,4 @@
#include "cli.h"
#include "./cli.h"
#include <passwordfile/io/passwordfile.h>
#include <passwordfile/io/cryptoexception.h>

View File

@ -1,4 +1,4 @@
#include "initiategui.h"
#include "./initiategui.h"
#include "gui/mainwindow.h"

View File

@ -1,8 +1,10 @@
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "model/fieldmodel.h"
#include "model/entrymodel.h"
#include "model/entryfiltermodel.h"
#include "./mainwindow.h"
#include "../model/fieldmodel.h"
#include "../model/entrymodel.h"
#include "../model/entryfiltermodel.h"
#include "gui/ui_mainwindow.h"
#include <passwordfile/io/cryptoexception.h>
#include <passwordfile/io/entry.h>

View File

@ -1,7 +1,7 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include "passwordgeneratordialog.h"
#include "./passwordgeneratordialog.h"
#include <passwordfile/io/passwordfile.h>

View File

@ -1,5 +1,6 @@
#include "passwordgeneratordialog.h"
#include "ui_passwordgeneratordialog.h"
#include "./passwordgeneratordialog.h"
#include "gui/ui_passwordgeneratordialog.h"
#include <passwordfile/io/cryptoexception.h>

View File

@ -1,4 +1,4 @@
#include "stacksupport.h"
#include "./stacksupport.h"
namespace QtGui {

View File

@ -1,7 +1,7 @@
#ifndef QTGUI_STACKSUPPORT_H
#define QTGUI_STACKSUPPORT_H
#include "undocommands.h"
#include "./undocommands.h"
#include <QUndoStack>

View File

@ -1,7 +1,8 @@
#include "undocommands.h"
#include "stacksupport.h"
#include "model/fieldmodel.h"
#include "model/entrymodel.h"
#include "./undocommands.h"
#include "./stacksupport.h"
#include "../model/fieldmodel.h"
#include "../model/entrymodel.h"
#include <passwordfile/io/entry.h>

View File

@ -1,9 +1,9 @@
#include "cli/cli.h"
#include "./cli/cli.h"
#ifdef GUI_QTWIDGETS
# include "gui/initiategui.h"
# include "./gui/initiategui.h"
#endif
#ifdef GUI_QTQUICK
# include "quickgui/initiatequick.h"
# include "./quickgui/initiatequick.h"
#endif
#include <passwordfile/util/openssl.h>

View File

@ -1,5 +1,5 @@
#include "entryfiltermodel.h"
#include "entrymodel.h"
#include "./entryfiltermodel.h"
#include "./entrymodel.h"
namespace QtGui {

View File

@ -1,4 +1,4 @@
#include "entrymodel.h"
#include "./entrymodel.h"
#ifdef MODEL_UNDO_SUPPORT
#include "gui/undocommands.h"

View File

@ -1,4 +1,4 @@
#include "fieldmodel.h"
#include "./fieldmodel.h"
#ifdef MODEL_UNDO_SUPPORT
#include "gui/undocommands.h"
#endif

View File

@ -1,4 +1,4 @@
#include "applicationinfo.h"
#include "./applicationinfo.h"
#include <qmath.h>

View File

@ -1,7 +1,7 @@
#ifndef APPLICATIONINFO_H
#define APPLICATIONINFO_H
#include "model/fieldmodel.h"
#include "../model/fieldmodel.h"
#include <QObject>
#include <QQmlPropertyMap>

View File

@ -1,8 +1,8 @@
#include "initiatequick.h"
#include "./initiatequick.h"
# include "model/entryfiltermodel.h"
# include "model/entrymodel.h"
# include "model/fieldmodel.h"
# include "../model/entryfiltermodel.h"
# include "../model/entrymodel.h"
# include "../model/fieldmodel.h"
#include "quickgui/applicationinfo.h"

View File

@ -1,4 +1,4 @@
#include "testroutines.h"
#include "./testroutines.h"
#include <c++utilities/io/binaryreader.h>
#include <c++utilities/io/binarywriter.h>