diff options
-rw-r--r-- | vcl/osx/DataFlavorMapping.cxx | 1 | ||||
-rw-r--r-- | vcl/osx/OSXTransferable.cxx | 6 | ||||
-rw-r--r-- | vcl/osx/a11ytextattributeswrapper.mm | 2 | ||||
-rw-r--r-- | vcl/osx/a11ytextwrapper.mm | 2 | ||||
-rw-r--r-- | vcl/osx/clipboard.cxx | 1 | ||||
-rw-r--r-- | vcl/osx/documentfocuslistener.cxx | 2 |
6 files changed, 11 insertions, 3 deletions
diff --git a/vcl/osx/DataFlavorMapping.cxx b/vcl/osx/DataFlavorMapping.cxx index 2b7b9a001351..31edf561a810 100644 --- a/vcl/osx/DataFlavorMapping.cxx +++ b/vcl/osx/DataFlavorMapping.cxx @@ -25,6 +25,7 @@ #include "com/sun/star/datatransfer/UnsupportedFlavorException.hpp" #include "com/sun/star/datatransfer/XMimeContentType.hpp" #include "com/sun/star/datatransfer/MimeContentTypeFactory.hpp" +#include "com/sun/star/lang/IllegalArgumentException.hpp" #include "com/sun/star/uno/Sequence.hxx" #include "comphelper/processfactory.hxx" 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 { diff --git a/vcl/osx/a11ytextattributeswrapper.mm b/vcl/osx/a11ytextattributeswrapper.mm index 6483c013f317..090f429df30f 100644 --- a/vcl/osx/a11ytextattributeswrapper.mm +++ b/vcl/osx/a11ytextattributeswrapper.mm @@ -28,6 +28,8 @@ #include <com/sun/star/awt/FontUnderline.hpp> #include <com/sun/star/awt/FontWeight.hpp> #include <com/sun/star/awt/FontStrikeout.hpp> +#include <com/sun/star/lang/IllegalArgumentException.hpp> +#include <com/sun/star/lang/IndexOutOfBoundsException.hpp> #include <com/sun/star/text/TextMarkupType.hpp> #include <com/sun/star/style/ParagraphAdjust.hpp> diff --git a/vcl/osx/a11ytextwrapper.mm b/vcl/osx/a11ytextwrapper.mm index b878effbdab8..a2e500a7e589 100644 --- a/vcl/osx/a11ytextwrapper.mm +++ b/vcl/osx/a11ytextwrapper.mm @@ -26,6 +26,8 @@ #include <com/sun/star/accessibility/AccessibleTextType.hpp> #include <com/sun/star/awt/Rectangle.hpp> +#include <com/sun/star/lang/IllegalArgumentException.hpp> +#include <com/sun/star/lang/IndexOutOfBoundsException.hpp> using namespace ::com::sun::star::accessibility; using namespace ::com::sun::star::awt; diff --git a/vcl/osx/clipboard.cxx b/vcl/osx/clipboard.cxx index 20f5decb4809..975dc8c01ed7 100644 --- a/vcl/osx/clipboard.cxx +++ b/vcl/osx/clipboard.cxx @@ -22,6 +22,7 @@ #include "DataFlavorMapping.hxx" #include "OSXTransferable.hxx" #include <com/sun/star/datatransfer/MimeContentTypeFactory.hpp> +#include <com/sun/star/lang/IllegalArgumentException.hpp> #include "comphelper/processfactory.hxx" #include <cppuhelper/supportsservice.hxx> diff --git a/vcl/osx/documentfocuslistener.cxx b/vcl/osx/documentfocuslistener.cxx index 3c628d96d27f..dc3691d8a1da 100644 --- a/vcl/osx/documentfocuslistener.cxx +++ b/vcl/osx/documentfocuslistener.cxx @@ -22,7 +22,7 @@ #include <com/sun/star/accessibility/XAccessibleEventBroadcaster.hpp> #include <com/sun/star/accessibility/AccessibleEventId.hpp> #include <com/sun/star/accessibility/AccessibleStateType.hpp> - +#include <com/sun/star/lang/IndexOutOfBoundsException.hpp> #include <osl/diagnose.h> using namespace ::com::sun::star::accessibility; |