diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-09-08 13:25:35 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-09-08 13:25:35 +0000 |
commit | 2bec6371bf628b58cdb6a9b1635b12056ee34877 (patch) | |
tree | a8d981f891258afd4bab6f76179c50dd4c5aa766 | |
parent | 8edde3a186eaaa0f24e35fc2098c606168fe3133 (diff) |
INTEGRATION: CWS ooo20040704 (1.36.4); FILE MERGED
2004/06/29 16:29:53 cmc 1.36.4.1: #i30801# allow using system stl if possible
-rw-r--r-- | sw/source/filter/ww8/wrtww8gr.cxx | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/wrtww8gr.cxx b/sw/source/filter/ww8/wrtww8gr.cxx index c12ffb5c9ab7..41ef1eba79ba 100644 --- a/sw/source/filter/ww8/wrtww8gr.cxx +++ b/sw/source/filter/ww8/wrtww8gr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: wrtww8gr.cxx,v $ * - * $Revision: 1.36 $ + * $Revision: 1.37 $ * - * last change: $Author: rt $ $Date: 2004-06-17 13:48:28 $ + * last change: $Author: rt $ $Date: 2004-09-08 14:25:35 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -478,6 +478,15 @@ void SwWW8Writer::OutGrf(const sw::Frame &rFrame) } } +GraphicDetails& GraphicDetails::operator=(const GraphicDetails &rOther) +{ + maFly = rOther.maFly; + mnPos = rOther.mnPos; + mnWid = rOther.mnWid; + mnHei = rOther.mnHei; + return *this; +} + void SwWW8WrGrf::Insert(const sw::Frame &rFly) { const SwNoTxtNode *pNd = |