summaryrefslogtreecommitdiff
path: root/helpcontent2/source/text/shared/autopi/01100150.xhp
diff options
context:
space:
mode:
Diffstat (limited to 'helpcontent2/source/text/shared/autopi/01100150.xhp')
-rwxr-xr-xhelpcontent2/source/text/shared/autopi/01100150.xhp5
1 files changed, 1 insertions, 4 deletions
diff --git a/helpcontent2/source/text/shared/autopi/01100150.xhp b/helpcontent2/source/text/shared/autopi/01100150.xhp
index 1e2b84fa4a..d5196bf6f8 100755
--- a/helpcontent2/source/text/shared/autopi/01100150.xhp
+++ b/helpcontent2/source/text/shared/autopi/01100150.xhp
@@ -5,13 +5,10 @@
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
- * Copyright 2008 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
- * $RCSfile: 01100150.xhp,v $
- * $Revision: 1.9 $
- *
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
/option> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/vcl/source/graphic/UnoGraphicObject.cxx
AgeCommit message (Collapse)Author
2019-07-31Improved loplugin:stringconstant (now that GCC 7 supports it): vclStephan Bergmann
Change-Id: I0bd1d26f6fc4052b812fde33ebd1d63111426942 Reviewed-on: https://gerrit.libreoffice.org/76627 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2019-07-24tdf#42949 Fix IWYU warnings in vcl/source/[f-i]*Gabor Kelemen
Found with bin/find-unneeded-includes Only removal proposals are dealt with here. Change-Id: I9991a1f4d8dde51b38cf8d114e4fb69ff4a349ea Reviewed-on: https://gerrit.libreoffice.org/75248 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2018-10-17clang-tidy readability-redundant-smartptr-getNoel Grandin
redundant get() call on smart pointer Change-Id: Icb5a03bbc15e79a30d3d135a507d22914d15c2bd Reviewed-on: https://gerrit.libreoffice.org/61837 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2018-04-26[API CHANGE] Remove uniqueID from XGraphicObject and GraphicObjectTomaž Vajngerl
Creating a GraphicObject with the uniqueID isn't supported anymore, so exposing the uniqueID doesn't make much sense. Both are removed from the API with this commit. Code paths that used it were refactored to use the alternative (property which transports XGraphic or XBitmap). XGraphicObject can now only be created empty and the XGraphic can be set to it with setGraphic property. Change-Id: I4df5ce0aef8814d482482effdbb4521a84252360 Reviewed-on: https://gerrit.libreoffice.org/53242 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2018-03-18cleanup UnoGraphicObjectTomaž Vajngerl
Change-Id: I7d8982223170b4675b85e350d9515ef99df0f715 Reviewed-on: https://gerrit.libreoffice.org/51390 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2018-03-16XGraphicObject: remove construct. with uniqueIDTomaž Vajngerl
Also make getUniqueID return empty string. Change-Id: I200a1facf088a205302991e5c26fe93adec55a87 Reviewed-on: https://gerrit.libreoffice.org/51330 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2018-03-11Move (and rename) graphic stuff from svtools to vclTomaž Vajngerl
This is preparing to change how GraphicManager works where it won't base itself around GraphicObject anymore but Graphic. No functional or cosmetic change was made to the classes, only changes that were needed because of the move and rename. The only thing that wasn't moved is the GraphicRenderer as it is not needed in vcl for now (but makes sense to move it in the future to keep graphic stuff together). grfmgr was renamed to GraphicObject as the GraphicManager will be changed a lot and most likely moved out, so the name grfmgr won't make any sense anymore. All the UNO implementations were renamed with a prefix Uno and used the same name as the class name. This is made to be more specific which are the Uno objects (for example graphic.cxx contained the implementation of XGraphic, which is similar to graph.cxx contains Graphic). Change-Id: I54a2fa6c7e997469aaa7770db05244adb9f64137 Reviewed-on: https://gerrit.libreoffice.org/51068 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>