summaryrefslogtreecommitdiff
path: root/svx/source/unodraw/gluepts.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-02-17 08:09:01 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-02-17 08:09:01 +0000
commit36f9d20ddff01a722aefc4900ded9db751a7dc77 (patch)
treeeaa23f5b212e3d916701654fbc76b7ad24712c71 /svx/source/unodraw/gluepts.cxx
parent7a2ecf8d057e175e540f1d7f6def8d04f1d388fe (diff)
INTEGRATION: CWS aw026 (1.11.710); FILE MERGED
2005/01/27 17:55:34 aw 1.11.710.1: #i38892#
Diffstat (limited to 'svx/source/unodraw/gluepts.cxx')
-rw-r--r--svx/source/unodraw/gluepts.cxx11
1 files changed, 8 insertions, 3 deletions
diff --git a/svx/source/unodraw/gluepts.cxx b/svx/source/unodraw/gluepts.cxx
index 0a3b2703aa39..486b31e6ee1b 100644
--- a/svx/source/unodraw/gluepts.cxx
+++ b/svx/source/unodraw/gluepts.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: gluepts.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: rt $ $Date: 2003-11-24 17:03:11 $
+ * last change: $Author: vg $ $Date: 2005-02-17 09:09:01 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -417,7 +417,12 @@ uno::Any SAL_CALL SvxUnoGluePointAccess::getByIdentifier( sal_Int32 Identifier )
const SdrGluePoint& rTempPoint = (*pList)[i];
if( rTempPoint.GetId() == nId )
{
- aGluePoint.IsUserDefined = sal_True;
+ // #i38892#
+ if(rTempPoint.IsUserDefined())
+ {
+ aGluePoint.IsUserDefined = sal_True;
+ }
+
convert( rTempPoint, aGluePoint );
return uno::makeAny( aGluePoint );
}