diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/graphic/GraphicObject.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/vcl/source/graphic/GraphicObject.cxx b/vcl/source/graphic/GraphicObject.cxx index b67ad659e8e1..d302d6952877 100644 --- a/vcl/source/graphic/GraphicObject.cxx +++ b/vcl/source/graphic/GraphicObject.cxx @@ -1071,11 +1071,9 @@ IMPL_LINK_NOARG(GraphicObject, ImplAutoSwapOutHdl, Timer *, void) mxSwapOutTimer->Start(); } -#define UNO_NAME_GRAPHOBJ_URLPREFIX "vnd.sun.star.GraphicObject:" - bool GraphicObject::isGraphicObjectUniqueIdURL(OUString const & rURL) { - const OUString aPrefix(UNO_NAME_GRAPHOBJ_URLPREFIX); + const OUString aPrefix("vnd.sun.star.GraphicObject:"); return rURL.startsWith(aPrefix); } |