diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-25 11:47:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-25 11:16:02 +0000 |
commit | c5498c310f6765ec9857e34169fd4a8d48953eb7 (patch) | |
tree | cd89d0c906677e80b6953c5a4fd7746ee59eff52 /include | |
parent | 97f0fbe5830a5d2119fe9f5e8142fe45b255c2ac (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')
-rw-r--r-- | include/unotools/confignode.hxx | 7 | ||||
-rw-r--r-- | include/unotools/configvaluecontainer.hxx | 17 | ||||
-rw-r--r-- | include/vbahelper/vbahelper.hxx | 2 |
3 files changed, 0 insertions, 26 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> diff --git a/include/vbahelper/vbahelper.hxx b/include/vbahelper/vbahelper.hxx index ab5a2e1f45c3..79f85068669f 100644 --- a/include/vbahelper/vbahelper.hxx +++ b/include/vbahelper/vbahelper.hxx @@ -254,8 +254,6 @@ public: static void basicexception( const css::uno::Exception& ex ) throw( css::script::BasicErrorException ); - static void runtimeexception( const OUString& DetailedMessage, const css::uno::Exception& ex, int err, const OUString& /*additionalArgument*/ ) throw( css::uno::RuntimeException ); - static void runtimeexception( int err, const OUString& additionalArgument ) throw( css::uno::RuntimeException ); }; |