summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-11-01 18:10:37 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-11-01 23:16:54 +0100
commitde4787b543d15a67bcf0828203e76061da5f4914 (patch)
treed1b418f023ab1149e5cf622517b9f557a3e6a11c /svl
parentf9da456711619c3fe501000945290d887fc4a468 (diff)
passwordcontainer.hxx is only included from svl/source/passwordcontainer
...but itself includes svl/source/passwordcontainer/syscreds.hxx, which only happens to work because of -I$(dir $(3)) in gb_CObject__command_pattern (in solenv/gbuild/platform/com_{GCC,MSC}_class.mk). Clean that up by moving the file. Change-Id: I7a04f757becf8113d1dccae9b78870e57ad3fbe5 Reviewed-on: https://gerrit.libreoffice.org/44171 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svl')
-rw-r--r--svl/source/passwordcontainer/passwordcontainer.cxx2
-rw-r--r--svl/source/passwordcontainer/passwordcontainer.hxx (renamed from svl/source/inc/passwordcontainer.hxx)8
2 files changed, 5 insertions, 5 deletions
diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx b/svl/source/passwordcontainer/passwordcontainer.cxx
index 2905f63e115e..c2e8b7100028 100644
--- a/svl/source/passwordcontainer/passwordcontainer.cxx
+++ b/svl/source/passwordcontainer/passwordcontainer.cxx
@@ -18,7 +18,7 @@
*/
-#include <passwordcontainer.hxx>
+#include "passwordcontainer.hxx"
#include <unotools/pathoptions.hxx>
#include <cppuhelper/factory.hxx>
diff --git a/svl/source/inc/passwordcontainer.hxx b/svl/source/passwordcontainer/passwordcontainer.hxx
index bda69d6a745f..67ad63e72722 100644
--- a/svl/source/inc/passwordcontainer.hxx
+++ b/svl/source/passwordcontainer/passwordcontainer.hxx
@@ -16,8 +16,8 @@
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_SVL_SOURCE_INC_PASSWORDCONTAINER_HXX
-#define INCLUDED_SVL_SOURCE_INC_PASSWORDCONTAINER_HXX
+#ifndef INCLUDED_SVL_SOURCE_PASSWORDCONTAINER_PASSWORDCONTAINER_HXX
+#define INCLUDED_SVL_SOURCE_PASSWORDCONTAINER_PASSWORDCONTAINER_HXX
#include <vector>
#include <map>
@@ -39,7 +39,7 @@
#include <rtl/ref.hxx>
#include <osl/mutex.hxx>
-#include <syscreds.hxx>
+#include "syscreds.hxx"
#define MEMORY_RECORD 0
#define PERSISTENT_RECORD 1
@@ -366,6 +366,6 @@ public:
};
-#endif // INCLUDED_SVL_SOURCE_INC_PASSWORDCONTAINER_HXX
+#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */