summaryrefslogtreecommitdiff
path: root/svx/source/unodraw/gluepts.cxx
diff options
context:
space:
mode:
authorChristian Lippka <cl@openoffice.org>2001-05-30 07:17:56 +0000
committerChristian Lippka <cl@openoffice.org>2001-05-30 07:17:56 +0000
commit3a17d64ecaf31685fcae35481943ed3afeba2f5d (patch)
tree5d6e4ce2d6641818dd4ca0006b3a9242601ab2b5 /svx/source/unodraw/gluepts.cxx
parentb41c683ccb6cd0839344a74559d975d6147ceb4c (diff)
#87219# fixed IsUserDefined flag
Diffstat (limited to 'svx/source/unodraw/gluepts.cxx')
-rw-r--r--svx/source/unodraw/gluepts.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/unodraw/gluepts.cxx b/svx/source/unodraw/gluepts.cxx
index e153bc6f8887..10ed415f586c 100644
--- a/svx/source/unodraw/gluepts.cxx
+++ b/svx/source/unodraw/gluepts.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: gluepts.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: sj $ $Date: 2001-05-04 15:49:09 $
+ * last change: $Author: cl $ $Date: 2001-05-30 08:17:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -369,7 +369,7 @@ uno::Any SAL_CALL SvxUnoGluePointAccess::getByIndex( sal_Int32 Index )
if( Index < 4 ) // default glue point?
{
SdrGluePoint aTempPoint = mpObject->GetVertexGluePoint( (USHORT)Index );
- aGluePoint.IsUserDefined = sal_True;
+ aGluePoint.IsUserDefined = sal_False;
convert( aTempPoint, aGluePoint );
uno::Any aAny;
aAny <<= aGluePoint;
@@ -382,7 +382,7 @@ uno::Any SAL_CALL SvxUnoGluePointAccess::getByIndex( sal_Int32 Index )
if( pList && Index < pList->GetCount() )
{
const SdrGluePoint& rTempPoint = (*pList)[(USHORT)Index];
- aGluePoint.IsUserDefined = sal_False;
+ aGluePoint.IsUserDefined = sal_True;
convert( rTempPoint, aGluePoint );
uno::Any aAny;
aAny <<= aGluePoint;