summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-03-16 13:37:07 +0000
committerOliver Bolte <obo@openoffice.org>2005-03-16 13:37:07 +0000
commitd040ac8b0f91ddbc35465376b9484e8e03d5155a (patch)
treea7f76a9cd2c110bf1b357ef5b827de4b16f10b24 /toolkit
parentaec127ce14d88b20c12bc5cef280d93a7d446b32 (diff)
#i10000# resolution for awt namespaces
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/inc/toolkit/helper/convert.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/toolkit/inc/toolkit/helper/convert.hxx b/toolkit/inc/toolkit/helper/convert.hxx
index 74a92e43d917..014c7ec1f898 100644
--- a/toolkit/inc/toolkit/helper/convert.hxx
+++ b/toolkit/inc/toolkit/helper/convert.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: convert.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: vg $ $Date: 2003-04-24 16:21:22 $
+ * last change: $Author: obo $ $Date: 2005-03-16 14:37:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -81,29 +81,29 @@ inline ::com::sun::star::awt::Size AWTSize( const Size& rVCLSize )
return ::com::sun::star::awt::Size( rVCLSize.Width(), rVCLSize.Height() );
}
-inline Size VCLSize( const ::com::sun::star::awt::Size& rAWTSize )
+inline ::Size VCLSize( const ::com::sun::star::awt::Size& rAWTSize )
{
- return Size( rAWTSize.Width, rAWTSize.Height );
+ return ::Size( rAWTSize.Width, rAWTSize.Height );
}
-inline ::com::sun::star::awt::Point AWTPoint( const Point& rVCLPoint )
+inline ::com::sun::star::awt::Point AWTPoint( const ::Point& rVCLPoint )
{
return ::com::sun::star::awt::Point( rVCLPoint.X(), rVCLPoint.Y() );
}
-inline Point VCLPoint( const ::com::sun::star::awt::Point& rAWTPoint )
+inline ::Point VCLPoint( const ::com::sun::star::awt::Point& rAWTPoint )
{
- return Point( rAWTPoint.X, rAWTPoint.Y );
+ return ::Point( rAWTPoint.X, rAWTPoint.Y );
}
-inline ::com::sun::star::awt::Rectangle AWTRectangle( const Rectangle& rVCLRect )
+inline ::com::sun::star::awt::Rectangle AWTRectangle( const ::Rectangle& rVCLRect )
{
return ::com::sun::star::awt::Rectangle( rVCLRect.Left(), rVCLRect.Top(), rVCLRect.GetWidth(), rVCLRect.GetHeight() );
}
-inline Rectangle VCLRectangle( const ::com::sun::star::awt::Rectangle& rAWTRect )
+inline ::Rectangle VCLRectangle( const ::com::sun::star::awt::Rectangle& rAWTRect )
{
- return Rectangle( Point( rAWTRect.X, rAWTRect.Y ), Size( rAWTRect.Width, rAWTRect.Height ) );
+ return ::Rectangle( ::Point( rAWTRect.X, rAWTRect.Y ), ::Size( rAWTRect.Width, rAWTRect.Height ) );
}