diff options
author | Oliver Bolte <obo@openoffice.org> | 2001-04-18 14:36:53 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2001-04-18 14:36:53 +0000 |
commit | a45c4ad5f133eb8b10e5ae2951096a1c86111dbc (patch) | |
tree | fe6544bbb655ee8171166d2ef9676ca93439b34a /configmgr | |
parent | 081ec76e83df64a98692fac99584db66a629ce0e (diff) |
#65293# typeconversation expected (linux)
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/tree/localizedtreeactions.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configmgr/source/tree/localizedtreeactions.cxx b/configmgr/source/tree/localizedtreeactions.cxx index d7fa81e87618..2e871d86290b 100644 --- a/configmgr/source/tree/localizedtreeactions.cxx +++ b/configmgr/source/tree/localizedtreeactions.cxx @@ -2,9 +2,9 @@ * * $RCSfile: localizedtreeactions.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: jb $ $Date: 2001-04-05 14:46:29 $ + * last change: $Author: obo $ $Date: 2001-04-18 15:36:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -267,7 +267,7 @@ std::auto_ptr<INode> cloneExpandedForLocale(INode const* _pNode, OUString const& return std::auto_ptr< INode >(); else if ( designatesAllLocales(makeLocale(_sLocale)) ) // from expanded to expanded - return _pNode->clone(); + return (std::auto_ptr<INode>) _pNode->clone(); else // needs reduction { |