Lines Matching refs:rNew
238 SwBoxAutoFmt::SwBoxAutoFmt( const SwBoxAutoFmt& rNew ) in SwBoxAutoFmt() argument
239 : aFont( rNew.aFont ), in SwBoxAutoFmt()
240 aHeight( rNew.aHeight ), in SwBoxAutoFmt()
241 aWeight( rNew.aWeight ), in SwBoxAutoFmt()
242 aPosture( rNew.aPosture ), in SwBoxAutoFmt()
243 aCJKFont( rNew.aCJKFont ), in SwBoxAutoFmt()
244 aCJKHeight( rNew.aCJKHeight ), in SwBoxAutoFmt()
245 aCJKWeight( rNew.aCJKWeight ), in SwBoxAutoFmt()
246 aCJKPosture( rNew.aCJKPosture ), in SwBoxAutoFmt()
247 aCTLFont( rNew.aCTLFont ), in SwBoxAutoFmt()
248 aCTLHeight( rNew.aCTLHeight ), in SwBoxAutoFmt()
249 aCTLWeight( rNew.aCTLWeight ), in SwBoxAutoFmt()
250 aCTLPosture( rNew.aCTLPosture ), in SwBoxAutoFmt()
251 aUnderline( rNew.aUnderline ), in SwBoxAutoFmt()
252 aOverline( rNew.aOverline ), in SwBoxAutoFmt()
253 aCrossedOut( rNew.aCrossedOut ), in SwBoxAutoFmt()
254 aContour( rNew.aContour ), in SwBoxAutoFmt()
255 aShadowed( rNew.aShadowed ), in SwBoxAutoFmt()
256 aColor( rNew.aColor ), in SwBoxAutoFmt()
257 aBox( rNew.aBox ), in SwBoxAutoFmt()
258 aTLBR( rNew.aTLBR ), in SwBoxAutoFmt()
259 aBLTR( rNew.aBLTR ), in SwBoxAutoFmt()
260 aBackground( rNew.aBackground ), in SwBoxAutoFmt()
261 aAdjust( rNew.aAdjust ), in SwBoxAutoFmt()
262 aHorJustify( rNew.aHorJustify ), in SwBoxAutoFmt()
263 aVerJustify( rNew.aVerJustify ), in SwBoxAutoFmt()
264 aStacked( rNew.aStacked ), in SwBoxAutoFmt()
265 aMargin( rNew.aMargin ), in SwBoxAutoFmt()
266 aLinebreak( rNew.aLinebreak ), in SwBoxAutoFmt()
267 aRotateAngle( rNew.aRotateAngle ), in SwBoxAutoFmt()
268 aRotateMode( rNew.aRotateMode ), in SwBoxAutoFmt()
269 sNumFmtString( rNew.sNumFmtString ), in SwBoxAutoFmt()
270 eSysLanguage( rNew.eSysLanguage ), in SwBoxAutoFmt()
271 eNumFmtLanguage( rNew.eNumFmtLanguage ) in SwBoxAutoFmt()
280 SwBoxAutoFmt& SwBoxAutoFmt::operator=( const SwBoxAutoFmt& rNew ) in operator =() argument
282 aFont = rNew.aFont; in operator =()
283 aHeight = rNew.aHeight; in operator =()
284 aWeight = rNew.aWeight; in operator =()
285 aPosture = rNew.aPosture; in operator =()
286 aCJKFont = rNew.aCJKFont; in operator =()
287 aCJKHeight = rNew.aCJKHeight; in operator =()
288 aCJKWeight = rNew.aCJKWeight; in operator =()
289 aCJKPosture = rNew.aCJKPosture; in operator =()
290 aCTLFont = rNew.aCTLFont; in operator =()
291 aCTLHeight = rNew.aCTLHeight; in operator =()
292 aCTLWeight = rNew.aCTLWeight; in operator =()
293 aCTLPosture = rNew.aCTLPosture; in operator =()
294 aUnderline = rNew.aUnderline; in operator =()
295 aOverline = rNew.aOverline; in operator =()
296 aCrossedOut = rNew.aCrossedOut; in operator =()
297 aContour = rNew.aContour; in operator =()
298 aShadowed = rNew.aShadowed; in operator =()
299 aColor = rNew.aColor; in operator =()
300 SetAdjust( rNew.aAdjust ); in operator =()
301 aBox = rNew.aBox; in operator =()
302 aTLBR = rNew.aTLBR; in operator =()
303 aBLTR = rNew.aBLTR; in operator =()
304 aBackground = rNew.aBackground; in operator =()
306 aHorJustify = rNew.aHorJustify; in operator =()
307 aVerJustify = rNew.aVerJustify; in operator =()
308 aStacked.SetValue( rNew.aStacked.GetValue() ); in operator =()
309 aMargin = rNew.aMargin; in operator =()
310 aLinebreak.SetValue( rNew.aLinebreak.GetValue() ); in operator =()
311 aRotateAngle.SetValue( rNew.aRotateAngle.GetValue() ); in operator =()
312 aRotateMode.SetValue( rNew.aRotateMode.GetValue() ); in operator =()
314 sNumFmtString = rNew.sNumFmtString; in operator =()
315 eSysLanguage = rNew.eSysLanguage; in operator =()
316 eNumFmtLanguage = rNew.eNumFmtLanguage; in operator =()
541 SwTableAutoFmt::SwTableAutoFmt( const SwTableAutoFmt& rNew ) in SwTableAutoFmt() argument
545 *this = rNew; in SwTableAutoFmt()
548 SwTableAutoFmt& SwTableAutoFmt::operator=( const SwTableAutoFmt& rNew ) in operator =() argument
555 SwBoxAutoFmt* pFmt = rNew.aBoxAutoFmt[ n ]; in operator =()
562 aName = rNew.aName; in operator =()
563 nStrResId = rNew.nStrResId; in operator =()
564 bInclFont = rNew.bInclFont; in operator =()
565 bInclJustify = rNew.bInclJustify; in operator =()
566 bInclFrame = rNew.bInclFrame; in operator =()
567 bInclBackground = rNew.bInclBackground; in operator =()
568 bInclValueFormat = rNew.bInclValueFormat; in operator =()
569 bInclWidthHeight = rNew.bInclWidthHeight; in operator =()
584 void SwTableAutoFmt::SetBoxFmt( const SwBoxAutoFmt& rNew, sal_uInt8 nPos ) in SetBoxFmt() argument
590 *aBoxAutoFmt[ nPos ] = rNew; in SetBoxFmt()
592 aBoxAutoFmt[ nPos ] = new SwBoxAutoFmt( rNew ); in SetBoxFmt()