summaryrefslogtreecommitdiff
path: root/goodies
diff options
context:
space:
mode:
authorKai Ahrens <ka@openoffice.org>2001-01-30 10:21:27 +0000
committerKai Ahrens <ka@openoffice.org>2001-01-30 10:21:27 +0000
commit09c143b1c20d4a4e54d2ddff1983c9d9cb7de432 (patch)
tree896634aef5fbee9199f68d810e1b4bc8d7dd2fa6 /goodies
parentb7f63afee858c888c6e169ed9fa825c2b6be5240 (diff)
#83243#: don't forget to init members in ID ctor
Diffstat (limited to 'goodies')
-rw-r--r--goodies/source/graphic/grfmgr.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/goodies/source/graphic/grfmgr.cxx b/goodies/source/graphic/grfmgr.cxx
index 93a629b1bb10..72d578d3cea1 100644
--- a/goodies/source/graphic/grfmgr.cxx
+++ b/goodies/source/graphic/grfmgr.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: grfmgr.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: ka $ $Date: 2000-12-21 16:48:23 $
+ * last change: $Author: ka $ $Date: 2001-01-30 11:21:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -163,7 +163,13 @@ GraphicObject::GraphicObject( const ByteString& rUniqueID, const GraphicManager*
mpUserData ( NULL )
{
ImplConstruct();
+
+ // assign default properties
+ ImplAssignGraphicData();
+
ImplSetGraphicManager( pMgr, &rUniqueID );
+
+ // update properties
ImplAssignGraphicData();
}