summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chart2/qa/extras/chart2import.cxx2
-rw-r--r--chart2/qa/extras/charttest.hxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/chart2/qa/extras/chart2import.cxx b/chart2/qa/extras/chart2import.cxx
index 71588c1f0778..9150b305c1b3 100644
--- a/chart2/qa/extras/chart2import.cxx
+++ b/chart2/qa/extras/chart2import.cxx
@@ -637,7 +637,7 @@ void Chart2ImportTest::testTransparentBackground(OUString const & filename)
Reference< beans::XPropertySet > xPropSet( xChart2Doc->getArea(), uno::UNO_QUERY);
CPPUNIT_ASSERT_MESSAGE("failed to get Area", xPropSet.is());
- com::sun::star::drawing::FillStyle aStyle;
+ css::drawing::FillStyle aStyle;
xPropSet -> getPropertyValue("FillStyle") >>= aStyle;
CPPUNIT_ASSERT_MESSAGE("Background needs to be with solid fill style", aStyle == 1);
diff --git a/chart2/qa/extras/charttest.hxx b/chart2/qa/extras/charttest.hxx
index e640118d0cb5..6e7be740183d 100644
--- a/chart2/qa/extras/charttest.hxx
+++ b/chart2/qa/extras/charttest.hxx
@@ -64,8 +64,8 @@
#include <boost/shared_ptr.hpp>
#include <boost/make_shared.hpp>
-using namespace com::sun::star;
-using namespace com::sun::star::uno;
+using namespace css;
+using namespace css::uno;
class ChartTest : public test::BootstrapFixture, public unotest::MacrosTest
{
@@ -152,7 +152,7 @@ void ChartTest::setUp()
{
test::BootstrapFixture::setUp();
- mxDesktop.set( com::sun::star::frame::Desktop::create( comphelper::getComponentContext(getMultiServiceFactory()) ) );
+ mxDesktop.set( css::frame::Desktop::create( comphelper::getComponentContext(getMultiServiceFactory()) ) );
}
void ChartTest::tearDown()