summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/tools.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine/tools.cxx')
-rw-r--r--slideshow/source/engine/tools.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/slideshow/source/engine/tools.cxx b/slideshow/source/engine/tools.cxx
index 5d3c1c01b468..fac4bed6e1f5 100644
--- a/slideshow/source/engine/tools.cxx
+++ b/slideshow/source/engine/tools.cxx
@@ -61,7 +61,7 @@ namespace slideshow
class NamedValueStringComparator
{
public:
- NamedValueStringComparator( const ::rtl::OUString& rSearchString ) :
+ NamedValueStringComparator( const OUString& rSearchString ) :
mrSearchString( rSearchString )
{
}
@@ -72,7 +72,7 @@ namespace slideshow
}
private:
- const ::rtl::OUString& mrSearchString;
+ const OUString& mrSearchString;
};
class NamedValueComparator
@@ -164,7 +164,7 @@ namespace slideshow
}
// try to extract string
- ::rtl::OUString aString;
+ OUString aString;
if( !(rSourceAny >>= aString) )
return false; // nothing left to try
@@ -323,7 +323,7 @@ namespace slideshow
}
// try to extract string
- ::rtl::OUString aString;
+ OUString aString;
if( !(rSourceAny >>= aString) )
return false; // nothing left to try
@@ -373,7 +373,7 @@ namespace slideshow
}
/// extract plain string from Any
- bool extractValue( ::rtl::OUString& o_rValue,
+ bool extractValue( OUString& o_rValue,
const uno::Any& rSourceAny,
const ShapeSharedPtr& /*rShape*/,
const ::basegfx::B2DVector& /*rSlideBounds*/ )
@@ -402,7 +402,7 @@ namespace slideshow
}
// try to extract string
- ::rtl::OUString aString;
+ OUString aString;
if( !(rSourceAny >>= aString) )
return false; // nothing left to try
@@ -745,7 +745,7 @@ namespace slideshow
// read bound rect
awt::Rectangle aTmpRect;
if( !(xPropSet->getPropertyValue(
- ::rtl::OUString("BoundRect") ) >>= aTmpRect) )
+ OUString("BoundRect") ) >>= aTmpRect) )
{
ENSURE_OR_THROW( false,
"getAPIShapeBounds(): Could not get \"BoundRect\" property from shape" );
@@ -767,7 +767,7 @@ namespace slideshow
// read prio
sal_Int32 nPrio(0);
if( !(xPropSet->getPropertyValue(
- ::rtl::OUString("ZOrder") ) >>= nPrio) )
+ OUString("ZOrder") ) >>= nPrio) )
{
ENSURE_OR_THROW( false,
"getAPIShapePrio(): Could not get \"ZOrder\" property from shape" );