diff options
author | Daniel Robertson <danlrobertson89@gmail.com> | 2015-09-25 12:26:58 -0400 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-09-25 21:13:17 +0000 |
commit | 8b00ac9b4627d8d7ed13d352ccb8932be6861d97 (patch) | |
tree | cac7420227f6a0b6d01e8c936263eeca083fdb4a /vcl/osx | |
parent | e678a8d8e5f1a178ab83da965b785d24b0a9cffb (diff) |
tdf#94228 comphelper: replace BOOST_PP
Remove makeSequence.
Change-Id: If07dc8702d811111fc634c9c7eb4c9a331517ca5
Reviewed-on: https://gerrit.libreoffice.org/18647
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/osx')
-rw-r--r-- | vcl/osx/DragSource.cxx | 3 | ||||
-rw-r--r-- | vcl/osx/DropTarget.cxx | 3 | ||||
-rw-r--r-- | vcl/osx/clipboard.cxx | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/vcl/osx/DragSource.cxx b/vcl/osx/DragSource.cxx index 30818cfe4eb6..d2ce6d103975 100644 --- a/vcl/osx/DragSource.cxx +++ b/vcl/osx/DragSource.cxx @@ -23,7 +23,6 @@ #include "rtl/ustring.hxx" -#include "comphelper/makesequence.hxx" #include <cppuhelper/supportsservice.hxx> #include "DragSource.hxx" @@ -62,7 +61,7 @@ OUString dragSource_getImplementationName() Sequence<OUString> dragSource_getSupportedServiceNames() { - return makeSequence(OUString("com.sun.star.datatransfer.dnd.OleDragSource")); + return { OUString("com.sun.star.datatransfer.dnd.OleDragSource") }; } @implementation DragSourceHelper; diff --git a/vcl/osx/DropTarget.cxx b/vcl/osx/DropTarget.cxx index a90c1d84a90b..3c836eea31d5 100644 --- a/vcl/osx/DropTarget.cxx +++ b/vcl/osx/DropTarget.cxx @@ -20,7 +20,6 @@ #include <com/sun/star/datatransfer/dnd/DNDConstants.hpp> #include <com/sun/star/datatransfer/XTransferable.hpp> #include <com/sun/star/datatransfer/dnd/DropTargetDragEnterEvent.hpp> -#include "comphelper/makesequence.hxx" #include <cppuhelper/interfacecontainer.hxx> #include "clipboard.hxx" #include "DropTarget.hxx" @@ -52,7 +51,7 @@ OUString dropTarget_getImplementationName() Sequence<OUString> dropTarget_getSupportedServiceNames() { - return makeSequence(OUString("com.sun.star.datatransfer.dnd.OleDropTarget")); + return { OUString("com.sun.star.datatransfer.dnd.OleDropTarget") }; } namespace /* private */ diff --git a/vcl/osx/clipboard.cxx b/vcl/osx/clipboard.cxx index 52943a944e73..e674b74e95a9 100644 --- a/vcl/osx/clipboard.cxx +++ b/vcl/osx/clipboard.cxx @@ -22,7 +22,6 @@ #include "DataFlavorMapping.hxx" #include "OSXTransferable.hxx" #include <com/sun/star/datatransfer/MimeContentTypeFactory.hpp> -#include "comphelper/makesequence.hxx" #include "comphelper/processfactory.hxx" #include <cppuhelper/supportsservice.hxx> #include <boost/assert.hpp> @@ -74,7 +73,7 @@ OUString clipboard_getImplementationName() Sequence<OUString> clipboard_getSupportedServiceNames() { - return makeSequence(OUString("com.sun.star.datatransfer.clipboard.SystemClipboard")); + return { OUString("com.sun.star.datatransfer.clipboard.SystemClipboard") }; } AquaClipboard::AquaClipboard(NSPasteboard* pasteboard, bool bUseSystemPasteboard) : |