summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorPhilipp Lohmann [pl] <Philipp.Lohmann@Sun.COM>2010-05-31 13:57:10 +0200
committerPhilipp Lohmann [pl] <Philipp.Lohmann@Sun.COM>2010-05-31 13:57:10 +0200
commit95bd2079a501ba3083e150b2d42afe07bed31883 (patch)
tree4db35faa2341cba495b8a964e89f26b4f5c17ece /framework
parentb61688b55a21f910ee5e78cc1f2dd435b99aa28b (diff)
solve ambiguity between ::Color and com::sun::star::util::Color
Diffstat (limited to 'framework')
-rw-r--r--framework/source/services/backingwindow.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/framework/source/services/backingwindow.cxx b/framework/source/services/backingwindow.cxx
index f39426190b27..19afbc29d843 100644
--- a/framework/source/services/backingwindow.cxx
+++ b/framework/source/services/backingwindow.cxx
@@ -65,7 +65,6 @@
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::frame;
-using namespace ::com::sun::star::util;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star;
using namespace framework;
@@ -372,7 +371,7 @@ void BackingWindow::prepareRecentFileMenu()
else
{
// Use INetURLObject to abbreviate all other URLs
- Reference< XStringWidth > xStringLength( new RecentFilesStringLength() );
+ Reference< util::XStringWidth > xStringLength( new RecentFilesStringLength() );
aMenuTitle = aURLObj.getAbbreviated( xStringLength, 46, INetURLObject::DECODE_UNAMBIGUOUS );
}
rtl::OUStringBuffer aBuf( aMenuTitle.getLength() + 5 );