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/xsheetannotation.hxx | |
parent | f5e003050c65669d53d0d4d2208b2b4d1b699a86 (diff) |
test: clean up namespacing
Change-Id: I7df07176bdbd15fdfdf8f9a7cdb26d4bee12997d
Diffstat (limited to 'include/test/sheet/xsheetannotation.hxx')
-rw-r--r-- | include/test/sheet/xsheetannotation.hxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/test/sheet/xsheetannotation.hxx b/include/test/sheet/xsheetannotation.hxx index 9dd552d2803d..03effd3f0198 100644 --- a/include/test/sheet/xsheetannotation.hxx +++ b/include/test/sheet/xsheetannotation.hxx @@ -32,14 +32,12 @@ #include <com/sun/star/table/CellAddress.hpp> -using namespace com::sun::star; - namespace apitest { class OOO_DLLPUBLIC_TEST XSheetAnnotation { public: - virtual uno::Reference< uno::XInterface > init() = 0; + virtual css::uno::Reference< css::uno::XInterface > init() = 0; // XSheetAnnotation void testGetPosition(); @@ -51,8 +49,7 @@ public: protected: ~XSheetAnnotation() {} - virtual uno::Reference< sheet::XSheetAnnotation> getAnnotation(table::CellAddress&) = 0; - + virtual css::uno::Reference< css::sheet::XSheetAnnotation> getAnnotation(css::table::CellAddress&) = 0; }; } |