summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/tools.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-10-11 07:36:16 +0000
committerOliver Bolte <obo@openoffice.org>2005-10-11 07:36:16 +0000
commit56f83a67cc805c09cfbfc0e99e66601e669ab618 (patch)
treef603c56dd883c1c7fd5008b674c4b8a4a37b513f /slideshow/source/engine/tools.cxx
parente44a7964d33cdcd29268c181b49e6509f316f482 (diff)
INTEGRATION: CWS presfixes08 (1.3.10); FILE MERGED
2005/08/26 11:56:15 dbo 1.3.10.3: #i46618# hyperlink support Issue number: Submitted by: Reviewed by: 2005/08/02 08:16:34 dbo 1.3.10.2: #i37786# missing const Issue number: Submitted by: Reviewed by: 2005/07/15 13:19:15 dbo 1.3.10.1: #i37786# drawing layer animations, cleanup, misc Issue number: Submitted by: Reviewed by:
Diffstat (limited to 'slideshow/source/engine/tools.cxx')
-rw-r--r--slideshow/source/engine/tools.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/slideshow/source/engine/tools.cxx b/slideshow/source/engine/tools.cxx
index 6aecd71d301c..c64513c1a788 100644
--- a/slideshow/source/engine/tools.cxx
+++ b/slideshow/source/engine/tools.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: tools.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 20:31:18 $
+ * last change: $Author: obo $ $Date: 2005-10-11 08:36:16 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -77,6 +77,7 @@
#include <lerp.hxx>
#include <smilfunctionparser.hxx>
+#include <layermanager.hxx>
@@ -466,10 +467,10 @@ namespace presentation
return true;
}
- bool findNamedValue( uno::Sequence< beans::NamedValue >& rSequence,
+ bool findNamedValue( uno::Sequence< beans::NamedValue > const& rSequence,
const beans::NamedValue& rSearchKey )
{
- const beans::NamedValue* pArray = rSequence.getArray();
+ const beans::NamedValue* pArray = rSequence.getConstArray();
const size_t nLen( rSequence.getLength() );
if( nLen == 0 )