summaryrefslogtreecommitdiffstats
path: root/include/test/container/xelementaccess.hxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-04-26 14:38:52 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-04-26 14:41:36 +0200
commitadd638b725bb9e5c94b33f6802483bc7101e3681 (patch)
treeafabfbf9b8bee490a1090bd7d45b33afa7f1e79a /include/test/container/xelementaccess.hxx
parentconvert edit section dialog to .ui (diff)
downloadcore-add638b725bb9e5c94b33f6802483bc7101e3681.tar.gz
core-add638b725bb9e5c94b33f6802483bc7101e3681.zip
test: clean up namespacing
Change-Id: I7df07176bdbd15fdfdf8f9a7cdb26d4bee12997d
Diffstat (limited to 'include/test/container/xelementaccess.hxx')
-rw-r--r--include/test/container/xelementaccess.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/test/container/xelementaccess.hxx b/include/test/container/xelementaccess.hxx
index 71306d345df7..a776d3331376 100644
--- a/include/test/container/xelementaccess.hxx
+++ b/include/test/container/xelementaccess.hxx
@@ -10,24 +10,22 @@
#include <com/sun/star/uno/Type.hxx>
#include <com/sun/star/uno/Reference.hxx>
-using namespace com::sun::star;
-
namespace apitest {
class XElementAccess
{
public:
- XElementAccess(uno::Type& rType): maType(rType) {}
+ XElementAccess(css::uno::Type& rType): maType(rType) {}
void testGetElementType();
void testHasElements();
- virtual uno::Reference< uno::XInterface > init() = 0;
+ virtual css::uno::Reference< css::uno::XInterface > init() = 0;
virtual ~XElementAccess() {}
private:
- uno::Type maType;
+ css::uno::Type maType;
};
}