summaryrefslogtreecommitdiff
path: root/include/unotools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-10-25 11:47:17 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-10-25 11:16:02 +0000
commitc5498c310f6765ec9857e34169fd4a8d48953eb7 (patch)
treecd89d0c906677e80b6953c5a4fd7746ee59eff52 /include/unotools
parent97f0fbe5830a5d2119fe9f5e8142fe45b255c2ac (diff)
loplugin:expandablemethods in UnoControls..vbahelper
Change-Id: I7e607df2a1f6d4eb207ee0d3eb30f41fac44a0c6 Reviewed-on: https://gerrit.libreoffice.org/30262 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/unotools')
-rw-r--r--include/unotools/confignode.hxx7
-rw-r--r--include/unotools/configvaluecontainer.hxx17
2 files changed, 0 insertions, 24 deletions
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<p/>
- 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
-
- <p>The current values in memory (your exchange locations registered using the registerXXX methods) is
- forwarded to their respective configuration nodes.</p>
-
- <p>Note that calling <method>write</method>(<sal_True/) is the same as calling <method>commit</method>(<TRUE/>).</p>
-
- @precond
- The access must have been created for update access
-
- You must explicitly call <method>commit</method> to make your changes persistent.
-
- @see read
- @see commit
- */
- void write();
-
/** commits any changes done
<p>Note that calling <method>write</method>(<sal_True/) is the same as calling <method>commit</method>(<TRUE/>).</p>