summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/misc/dp_ucb.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/misc/dp_ucb.cxx')
-rw-r--r--desktop/source/deployment/misc/dp_ucb.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/desktop/source/deployment/misc/dp_ucb.cxx b/desktop/source/deployment/misc/dp_ucb.cxx
index 96db856ce036..2fff496c5a1a 100644
--- a/desktop/source/deployment/misc/dp_ucb.cxx
+++ b/desktop/source/deployment/misc/dp_ucb.cxx
@@ -34,7 +34,6 @@
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::ucb;
-using ::rtl::OUString;
namespace dp_misc
{
@@ -210,7 +209,7 @@ bool readLine( OUString * res, OUString const & startingWith,
{
if (file.match( startingWith, pos ))
{
- ::rtl::OUStringBuffer buf;
+ OUStringBuffer buf;
sal_Int32 start = pos;
pos += startingWith.getLength();
for (;;)
@@ -254,7 +253,7 @@ bool readLine( OUString * res, OUString const & startingWith,
return false;
}
-bool readProperties( ::std::list< ::std::pair< ::rtl::OUString, ::rtl::OUString> > & out_result,
+bool readProperties( ::std::list< ::std::pair< OUString, OUString> > & out_result,
::ucbhelper::Content & ucb_content )
{
// read whole file:
@@ -266,7 +265,7 @@ bool readProperties( ::std::list< ::std::pair< ::rtl::OUString, ::rtl::OUString>
for (;;)
{
- ::rtl::OUStringBuffer buf;
+ OUStringBuffer buf;
sal_Int32 start = pos;
bool bEOF = false;