From c5498c310f6765ec9857e34169fd4a8d48953eb7 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 25 Oct 2016 11:47:17 +0200 Subject: loplugin:expandablemethods in UnoControls..vbahelper Change-Id: I7e607df2a1f6d4eb207ee0d3eb30f41fac44a0c6 Reviewed-on: https://gerrit.libreoffice.org/30262 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/unotools/confignode.hxx | 7 ------- include/unotools/configvaluecontainer.hxx | 17 ----------------- 2 files changed, 24 deletions(-) (limited to 'include/unotools') diff --git a/include/unotools/confignode.hxx b/include/unotools/confignode.hxx index 5ab77c19da87..cae0bd9b8b92 100644 --- a/include/unotools/confignode.hxx +++ b/include/unotools/confignode.hxx @@ -142,13 +142,6 @@ namespace utl css::uno::Sequence< OUString > getNodeNames() const throw(); - /** enables or disables name escaping when accessing direct children

- Escaping is disabled by default, usually you enable it for set nodes (e.g. with calling setEscape(isSetNode)). - Once escaping is enabled, you should not access indirect children (e.g. openNode("child/grandchild"), 'cause - escaping for such names may not be supported by the underlying API objects. - @see getEscape - */ - void setEscape(bool _bEnable); /** get the flag specifying the current escape behaviour @see setEscape */ diff --git a/include/unotools/configvaluecontainer.hxx b/include/unotools/configvaluecontainer.hxx index 16048134353d..d5838711ba98 100644 --- a/include/unotools/configvaluecontainer.hxx +++ b/include/unotools/configvaluecontainer.hxx @@ -120,23 +120,6 @@ namespace utl */ void read( ); - /** updates the configuration data - -

The current values in memory (your exchange locations registered using the registerXXX methods) is - forwarded to their respective configuration nodes.

- -

Note that calling write(commit().

- - @precond - The access must have been created for update access - - You must explicitly call commit to make your changes persistent. - - @see read - @see commit - */ - void write(); - /** commits any changes done

Note that calling write(commit().

-- cgit