diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-02-06 22:40:16 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-02-06 22:40:16 +0100 |
commit | a34d9150b419ee7471b96599d877ff1091d6b567 (patch) | |
tree | 4709620e88c1bb53b7fe62e5065a2ca9c0be4839 /vcl/osx/OSXTransferable.cxx | |
parent | 6dce9c6757823b9e89863716ae70ff4e8ddd4e60 (diff) |
Add missing #includes
...like 6dce9c6757823b9e89863716ae70ff4e8ddd4e60, for macOS-only code
Change-Id: I0b4c0ba12df487107661a6af54fba42122e8f023
Diffstat (limited to 'vcl/osx/OSXTransferable.cxx')
-rw-r--r-- | vcl/osx/OSXTransferable.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/vcl/osx/OSXTransferable.cxx b/vcl/osx/OSXTransferable.cxx index 32fca10a00a6..87f4c4e14004 100644 --- a/vcl/osx/OSXTransferable.cxx +++ b/vcl/osx/OSXTransferable.cxx @@ -17,6 +17,10 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> + +#include <com/sun/star/datatransfer/UnsupportedFlavorException.hpp> +#include <com/sun/star/lang/IllegalArgumentException.hpp> #include <sal/types.h> #include <osl/diagnose.h> @@ -29,9 +33,7 @@ using namespace osl; using namespace cppu; using namespace com::sun::star::uno; using namespace com::sun::star::datatransfer; -using namespace com::sun::star::io; using namespace com::sun::star::lang; -using namespace com::sun::star::container; namespace { |