summaryrefslogtreecommitdiffstats
path: root/sd/workben
Commit message (Collapse)AuthorAgeFilesLines
* Fixing "...."Andrea Gelmini2019-09-061-1/+1
| | | | | | | Change-Id: I3424e17cfdfb563fdc5882942031deafae8689fe Reviewed-on: https://gerrit.libreoffice.org/78678 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
* loplugin:countusersofdefaultparamsNoel Grandin2018-04-281-4/+4
| | | | | | | Change-Id: I84868b3115c534a8240394283cc3beedf8cb3a80 Reviewed-on: https://gerrit.libreoffice.org/53543 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
* clean-up: unused using declarations and includesJochen Nitschke2016-04-181-4/+0
| | | | | | | | | | | | | | Searched source for using declarations. Checked if those symbols reappear in the source file, even in comments or dead code but not in #include statements. If they don't reappear, remove the declaration. Remove includes whose symbol got removed. Change-Id: Ibb77163f63c1120070e9518e3dc0a78c6c59fab0 Reviewed-on: https://gerrit.libreoffice.org/24148 Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de> Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
* cleanup: remove unused com/sun/star/uno includesJochen Nitschke2016-04-121-3/+0
| | | | | | | | | | | | Sequence.h(xx), Any.h(xx) and Type.h(xx) and remove unused using-declarations from these files. Add a few missing includes provided by them. Change-Id: I6b91b6d1fdf9d0496dd546c0aab9bdcc6831a5d4 Reviewed-on: https://gerrit.libreoffice.org/23805 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
* com::sun::star->css in sdNoel Grandin2015-10-291-15/+15
| | | | Change-Id: Ic0cbc857a3a9c66241b94c30bf8c859435f5a4b4
* boost::shared_ptr->std::shared_ptrCaolán McNamara2015-09-231-1/+1
| | | | | | | | Change-Id: I2c6ac98f0984534894759cfbf4449eb554801cf8 Reviewed-on: https://gerrit.libreoffice.org/18678 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* revert for mac and win unit case crashes after boost->stdCaolán McNamara2015-09-171-1/+1
| | | | Change-Id: I82c7084f203a834c2d42f9527705288e6036019b
* boost->stdCaolán McNamara2015-09-171-1/+1
| | | | Change-Id: I1e6a7fd66f90e6acd803c6cd464f1d73252f7bcb
* sd: tdf#88206 replace cppu::WeakImplHelper* etc.Takeshi Abe2015-08-311-2/+2
| | | | | | | | | with the variadic variants. Change-Id: I01909ee45c31d17356e13b1ff2430440daff9aa7 Reviewed-on: https://gerrit.libreoffice.org/18146 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
* remove whitespacesMarkus Mohrhard2014-06-252-19/+0
| | | | Change-Id: I9daea42a433b5032931a722878874917cf37f4d1
* remove unnecessary scope qualifier from sal_Bool usesNoel Grandin2014-04-032-2/+2
| | | | | | i.e. convert "::sal_Bool" to "sal_Bool" Change-Id: Ie5943aee4fee617bf2670655558927ed25b7e067
* Remove visual noise from sdAlexander Wilms2014-02-262-15/+13
| | | | | | | Change-Id: I0957cabd66ddc4e25c7e6ff54ec2a555eda0792c Reviewed-on: https://gerrit.libreoffice.org/8306 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* Remove unneccessary commentsAlexander Wilms2014-02-231-9/+9
| | | | | | | Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* remove unnecessary use of OUString constructor when assigningNoel Grandin2013-11-191-1/+1
| | | | | | | | | change code like aStr = OUString("xxxx"); to aStr = "xxxx"; Change-Id: Ib981a5cc735677ec5dba76ef9279a107d22e99d4
* fixincludeguards.sh: sdThomas Arnhold2013-10-231-3/+3
| | | | Change-Id: Ic831838b377656015d645eec9d439424378e08af
* mass removal of rtl:: prefixes for O(U)String*Luboš Luňák2013-04-071-4/+4
| | | | | | | | Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
* remove boilerplate commentsThomas Arnhold2013-04-011-2/+1
| | | | Change-Id: I44a476a9843816f70a7a4d84b8c35edeecd5daaf
* automated removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStringsThomas Arnhold2013-03-191-1/+1
| | | | | | | | | | | Done with a perl regex: s/OUString\s*\(\s*RTL_CONSTASCII_USTRINGPARAM\s*\((\s*"[^")]*?"\s*)\)\s*\)/OUString\($1\)/gms Change-Id: Idf28320817cdcbea6d0f7ec06a9bf51bd2c3b3ec Reviewed-on: https://gerrit.libreoffice.org/2832 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
* Get rid of (most uses of) GUITor Lillqvist2012-12-251-1/+1
| | | | | | | | | | GUI only takes values UNX or WNT, so it is fairly pointless. One can check whether OS is WNT or not instead. Change-Id: I78ae32c03536a496a563e5deeb0fca78aebf9c34 Reviewed-on: https://gerrit.libreoffice.org/1304 Reviewed-by: Peter Foley <pefoley2@verizon.net> Tested-by: Peter Foley <pefoley2@verizon.net>
* re-base on ALv2 code. Includes:Michael Meeks2012-11-281-0/+18
| | | | | | | | | | | | | | | | | | | | | | | Patches contributed by Armin Le-Grand #118898# Adapted ImpGraphic::ImplGetBitmap to correctly convert metafiles... http://svn.apache.org/viewvc?view=revision&revision=1293316 #118485# - Styles for OLEs are not saved. http://svn.apache.org/viewvc?view=revision&revision=1182166 Patches contributed by Andre Fischer http://svn.apache.org/viewvc?view=revision&revision=1172128 http://svn.apache.org/viewvc?view=revision&revision=1172133 Patch contributed by Ariel Constenla-Haile i#118505# - Remove MN_OLE_OBJECT menu item from Draw/Impress contextmenu - CWS contextmenu1 http://svn.apache.org/viewvc?view=revision&revision=1182915 Patch contributed by Zhang Jian Fang #118876#, Add check if the OutlinerParaObject is created successfully http://svn.apache.org/viewvc?view=revision&revision=1243381 restore a re-based rdbedit.
* fdo#46808, Adapt awt::Toolkit UNO service to new styleNoel Grandin2012-10-241-5/+2
| | | | | | | | | Create a merged XToolkit2 interface for this service to implement. Which is backwards-compatible, but does not require creating a new service. Also mark sub-interfaces as non-optional. Change-Id: I278d0288e92be277033013302267cf93f7d70480
* replace remaining InterlockedCount() with inlined versionNorbert Thiebaud2012-09-251-2/+2
| | | | | | | Change-Id: Ifcfa48fc87f905a91470a5b0fd597b02f220784c Reviewed-on: https://gerrit.libreoffice.org/671 Tested-by: Norbert Thiebaud <nthiebaud@gmail.com> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
* Remove UNO includes commentsThomas Arnhold2012-06-292-4/+0
| | | | Change-Id: I48e193322967fb75e93eaf81e9e2110d3056f92a
* re-base on ALv2 code.Michael Meeks2012-06-212-44/+28
| | | | Change-Id: I6c145e984c885c7e06caa1c27bfb354ea49ad9ce
* remove include of pch header from sdNorbert Thiebaud2011-11-271-1/+0
|
* Drop OS2Tor Lillqvist2011-05-211-28/+0
|
* add modelines to .hxx files as wellCaolán McNamara2010-10-281-0/+3
|
* Add vim/emacs modelines to all source filesSebastian Spaeth2010-10-131-0/+3
| | | | | | | | Fixes #fdo30794 Based on bin/add-modelines script (originally posted in mail 1286706307.1871.1399280959@webmail.messagingengine.com) Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
* CWS-TOOLING: integrate CWS slidecopyIvo Hinkelmann2010-06-042-0/+348
|\
| * slidecopy: merge after copying in CWS renaissance2Frank Schoenheit [fs]2010-06-032-0/+348
| |\
| | * mergeFrank Schoenheit [fs]2010-04-149-560/+0
| | |\
| | | * slidecopy: the custom toolpanel example in sd/workben/custompanel is ↵Frank Schoenheit [fs]2010-04-1311-897/+0
| | | | | | | | | | | | | | | | superseded by the one in sfx2/workben/custompanel
| | * | slidecopy: adjusted to new XToolPanelFrank Schoenheit [fs]2010-04-132-0/+11
| | |/
| | * slidecopy: moved XToolPanel from css.view to css.ui, now that it is an ↵Frank Schoenheit [fs]2010-04-091-2/+2
| | | | | | | | | | | | XUIElement
| | * slidecopy: don't link the example extension against the tools lib, (which is ↵Frank Schoenheit [fs]2010-03-231-1/+0
| | | | | | | | | | | | non-URE), this won't work on Mac
| | * slidecopy: mergeFrank Schoenheit [fs]2010-03-221-9/+0
| | |\ | |_|/ |/| |
| | * slidecopy: allow custom tool panels in the task pane to be implemented as ↵Frank Schoenheit [fs]2010-03-225-17/+194
| | | | | | | | | | | | extensions
| | * slidecopy: XResourceFactory::createResource now allows to raise ↵Frank Schoenheit [fs]2010-03-192-5/+5
| | | | | | | | | | | | IllegalArgument/WrappedTargetException
| | * slidecopy: initial implementation for custom tool panelsFrank Schoenheit [fs]2010-03-1811-0/+730
| |/ |/| | | | | | | | | | | | | | | | | | | | | The idea is to allow third-party components to plug additional tool panels into the task pane, by using the drawing framework (http://wiki.services.openoffice.org/wiki/Drawing_framework). This first step is not finished at all, it just adds a configuration scheme/data for such custom tool panels, and implements basic functionality in the ToolPanelDeck to respect this config data. Additionally, the first version of an example extension for a custom tool panel is implemented in sd/workben/custompanel. Still, except showing a drawer in the tool panel deck, representing the custom panel, nothing works. More to come :)
| * fixed unix warningsChristian Lippka2010-04-131-0/+0
|/
* INTEGRATION: CWS supdremove02 (1.1.1.1.1538); FILE MERGEDOliver Bolte2008-02-251-1/+1
| | | | 2008/01/25 15:56:06 rt 1.1.1.1.1538.1: #i85482# Remove UPD from library names.
* initial importJens-Heiner Rechtien2000-09-181-0/+101