summaryrefslogtreecommitdiff
path: root/tools/qa/cppunit/test_rectangle.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/qa/cppunit/test_rectangle.cxx')
-rw-r--r--tools/qa/cppunit/test_rectangle.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/qa/cppunit/test_rectangle.cxx b/tools/qa/cppunit/test_rectangle.cxx
index 4f3fff8afa34..e9a1c719b10f 100644
--- a/tools/qa/cppunit/test_rectangle.cxx
+++ b/tools/qa/cppunit/test_rectangle.cxx
@@ -30,7 +30,7 @@ public:
void Test::test_rectangle()
{
{
- Rectangle aRect(1,1,1,1);
+ tools::Rectangle aRect(1,1,1,1);
CPPUNIT_ASSERT_EQUAL(long(1), aRect.GetWidth());
CPPUNIT_ASSERT_EQUAL(long(1), aRect.GetHeight());
@@ -40,7 +40,7 @@ void Test::test_rectangle()
}
{
- Rectangle aRect(Point(), Size(1,1));
+ tools::Rectangle aRect(Point(), Size(1,1));
CPPUNIT_ASSERT_EQUAL(long(0), aRect.Left());
CPPUNIT_ASSERT_EQUAL(long(0), aRect.Top());