diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2001-03-20 08:35:52 +0000 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2001-03-20 08:35:52 +0000 |
commit | 446506abdecac63d6e3c93c6da609baed0ec09f7 (patch) | |
tree | 0e118b8984f794bcc789eadd348ae278cdecf253 /ucbhelper | |
parent | e40c8c132e2c7aff2237b29f5ee5415bbdb58744 (diff) |
Removed non-const version of Content::getCommandEnvironment().
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/inc/ucbhelper/content.hxx | 12 | ||||
-rw-r--r-- | ucbhelper/source/client/content.cxx | 10 |
2 files changed, 4 insertions, 18 deletions
diff --git a/ucbhelper/inc/ucbhelper/content.hxx b/ucbhelper/inc/ucbhelper/content.hxx index 57bec7b1f4ac..7ab153f30e9e 100644 --- a/ucbhelper/inc/ucbhelper/content.hxx +++ b/ucbhelper/inc/ucbhelper/content.hxx @@ -2,9 +2,9 @@ * * $RCSfile: content.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: kso $ $Date: 2001-02-07 08:00:51 $ + * last change: $Author: kso $ $Date: 2001-03-20 09:35:38 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -525,14 +525,6 @@ public: */ void abortCommand(); - /** - * This method returns the command environment of the content. - * - * @return the command environment. - */ - ::com::sun::star::uno::Reference< - ::com::sun::star::ucb::XCommandEnvironment > - getCommandEnvironment(); ////////////////////////////////////////////////////////////////////// // Special commands. diff --git a/ucbhelper/source/client/content.cxx b/ucbhelper/source/client/content.cxx index 873c33d7c9ec..933c3a0b8b70 100644 --- a/ucbhelper/source/client/content.cxx +++ b/ucbhelper/source/client/content.cxx @@ -2,9 +2,9 @@ * * $RCSfile: content.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: kso $ $Date: 2001-02-07 10:32:24 $ + * last change: $Author: kso $ $Date: 2001-03-20 09:35:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -823,12 +823,6 @@ void Content::abortCommand() } //========================================================================= -Reference< XCommandEnvironment > Content::getCommandEnvironment() -{ - return m_xImpl->getEnvironment(); -} - -//========================================================================= Reference< XResultSet > Content::createCursor( const Sequence< OUString >& rPropertyNames, ResultSetInclude eMode ) |