summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/inc/dp_interact.h
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/inc/dp_interact.h')
-rw-r--r--desktop/source/deployment/inc/dp_interact.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/desktop/source/deployment/inc/dp_interact.h b/desktop/source/deployment/inc/dp_interact.h
index 9d3a105fd786..67bf480176fb 100644
--- a/desktop/source/deployment/inc/dp_interact.h
+++ b/desktop/source/deployment/inc/dp_interact.h
@@ -31,7 +31,7 @@ namespace dp_misc
{
inline void progressUpdate(
- ::rtl::OUString const & status,
+ OUString const & status,
css::uno::Reference<css::ucb::XCommandEnvironment> const & xCmdEnv )
{
if (xCmdEnv.is()) {
@@ -52,16 +52,16 @@ public:
inline ~ProgressLevel();
inline ProgressLevel(
css::uno::Reference<css::ucb::XCommandEnvironment> const & xCmdEnv,
- ::rtl::OUString const & status );
+ OUString const & status );
- inline void update( ::rtl::OUString const & status ) const;
+ inline void update( OUString const & status ) const;
inline void update( css::uno::Any const & status ) const;
};
//______________________________________________________________________________
inline ProgressLevel::ProgressLevel(
css::uno::Reference< css::ucb::XCommandEnvironment > const & xCmdEnv,
- ::rtl::OUString const & status )
+ OUString const & status )
{
if (xCmdEnv.is())
m_xProgressHandler = xCmdEnv->getProgressHandler();
@@ -77,7 +77,7 @@ inline ProgressLevel::~ProgressLevel()
}
//______________________________________________________________________________
-inline void ProgressLevel::update( ::rtl::OUString const & status ) const
+inline void ProgressLevel::update( OUString const & status ) const
{
if (m_xProgressHandler.is())
m_xProgressHandler->update( css::uno::makeAny(status) );