From bcefbb66e869f6d61cc35e4cfbd3d45b05bb7acd Mon Sep 17 00:00:00 2001 From: Martchus Date: Sun, 6 Sep 2015 20:33:27 +0200 Subject: [PATCH] fixed includes --- aes/aes.cpp | 2 +- io/cryptoexception.cpp | 2 +- io/entry.cpp | 4 ++-- io/entry.h | 2 +- io/field.cpp | 4 ++-- io/parsingexception.cpp | 2 +- io/passwordfile.cpp | 8 ++++---- util/openssl.cpp | 2 +- util/opensslrandomdevice.cpp | 5 +++-- 9 files changed, 16 insertions(+), 15 deletions(-) diff --git a/aes/aes.cpp b/aes/aes.cpp index 184f159..484aa8d 100644 --- a/aes/aes.cpp +++ b/aes/aes.cpp @@ -1,4 +1,4 @@ -#include "aes.h" +#include "./aes.h" #include diff --git a/io/cryptoexception.cpp b/io/cryptoexception.cpp index 083cb3b..7dc6a7f 100644 --- a/io/cryptoexception.cpp +++ b/io/cryptoexception.cpp @@ -1,4 +1,4 @@ -#include "cryptoexception.h" +#include "./cryptoexception.h" namespace Io { /*! diff --git a/io/entry.cpp b/io/entry.cpp index 503aede..a6599b0 100644 --- a/io/entry.cpp +++ b/io/entry.cpp @@ -1,5 +1,5 @@ -#include "entry.h" -#include "parsingexception.h" +#include "./entry.h" +#include "./parsingexception.h" #include #include diff --git a/io/entry.h b/io/entry.h index c585dbf..586c3cb 100644 --- a/io/entry.h +++ b/io/entry.h @@ -1,7 +1,7 @@ #ifndef ENTRY_H #define ENTRY_H -#include "field.h" +#include "./field.h" #include #include diff --git a/io/field.cpp b/io/field.cpp index 00c5fdb..69420eb 100644 --- a/io/field.cpp +++ b/io/field.cpp @@ -1,5 +1,5 @@ -#include "field.h" -#include "parsingexception.h" +#include "./field.h" +#include "./parsingexception.h" #include #include diff --git a/io/parsingexception.cpp b/io/parsingexception.cpp index 481ca19..c77759f 100644 --- a/io/parsingexception.cpp +++ b/io/parsingexception.cpp @@ -1,4 +1,4 @@ -#include "parsingexception.h" +#include "./parsingexception.h" namespace Io { diff --git a/io/passwordfile.cpp b/io/passwordfile.cpp index 14a74b7..cc46915 100644 --- a/io/passwordfile.cpp +++ b/io/passwordfile.cpp @@ -1,7 +1,7 @@ -#include "passwordfile.h" -#include "cryptoexception.h" -#include "parsingexception.h" -#include "entry.h" +#include "./passwordfile.h" +#include "./cryptoexception.h" +#include "./parsingexception.h" +#include "./entry.h" #include #include diff --git a/util/openssl.cpp b/util/openssl.cpp index 79d5272..aa63790 100644 --- a/util/openssl.cpp +++ b/util/openssl.cpp @@ -1,4 +1,4 @@ -#include "openssl.h" +#include "./openssl.h" #include #include diff --git a/util/opensslrandomdevice.cpp b/util/opensslrandomdevice.cpp index a54ed9f..0edc9c6 100644 --- a/util/opensslrandomdevice.cpp +++ b/util/opensslrandomdevice.cpp @@ -1,5 +1,6 @@ -#include "opensslrandomdevice.h" -#include "io/cryptoexception.h" +#include "./opensslrandomdevice.h" + +#include "../io/cryptoexception.h" #include