diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-04-26 14:38:52 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-04-26 14:41:36 +0200 |
commit | add638b725bb9e5c94b33f6802483bc7101e3681 (patch) | |
tree | afabfbf9b8bee490a1090bd7d45b33afa7f1e79a /include/test/sheet/xnamedrange.hxx | |
parent | f5e003050c65669d53d0d4d2208b2b4d1b699a86 (diff) |
test: clean up namespacing
Change-Id: I7df07176bdbd15fdfdf8f9a7cdb26d4bee12997d
Diffstat (limited to 'include/test/sheet/xnamedrange.hxx')
-rw-r--r-- | include/test/sheet/xnamedrange.hxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/test/sheet/xnamedrange.hxx b/include/test/sheet/xnamedrange.hxx index 97a6afdf4926..19465fe528e7 100644 --- a/include/test/sheet/xnamedrange.hxx +++ b/include/test/sheet/xnamedrange.hxx @@ -30,14 +30,12 @@ #include <com/sun/star/sheet/XNamedRange.hpp> #include <test/testdllapi.hxx> -using namespace com::sun::star; - namespace apitest { class OOO_DLLPUBLIC_TEST XNamedRange { public: - virtual uno::Reference< uno::XInterface > init() = 0; + virtual css::uno::Reference< css::uno::XInterface > init() = 0; // XNamedRange void testGetContent(); @@ -46,11 +44,11 @@ public: void testSetType(); void testGetReferencePosition(); void testSetReferencePosition(); + protected: ~XNamedRange() {} - virtual uno::Reference< sheet::XNamedRange> getNamedRange(const OUString&) = 0; - + virtual css::uno::Reference< css::sheet::XNamedRange> getNamedRange(const OUString&) = 0; }; } |