xattr2.cxx (d5370dc8) | xattr2.cxx (6f6ba3c8) |
---|---|
1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 345 unchanged lines hidden (view full) --- 354 rStream << maMatrix.m01; 355 rStream << maMatrix.m02; 356 rStream << maMatrix.m10; 357 rStream << maMatrix.m11; 358 rStream << maMatrix.m12; 359 return rStream; 360} 361 | 1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 345 unchanged lines hidden (view full) --- 354 rStream << maMatrix.m01; 355 rStream << maMatrix.m02; 356 rStream << maMatrix.m10; 357 rStream << maMatrix.m11; 358 rStream << maMatrix.m12; 359 return rStream; 360} 361 |
362sal_Bool AffineMatrixItem::QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId ) const | 362sal_Bool AffineMatrixItem::QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 /* nMemberId */ ) const |
363{ 364 rVal <<= maMatrix; 365 return sal_True; 366} 367 | 363{ 364 rVal <<= maMatrix; 365 return sal_True; 366} 367 |
368sal_Bool AffineMatrixItem::PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId ) | 368sal_Bool AffineMatrixItem::PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 /* nMemberId */ ) |
369{ 370 if (rVal >>= maMatrix) 371 { 372 return sal_True; 373 } 374 375 DBG_ERROR( "AffineMatrixItem::PutValue - Wrong type!" ); 376 return sal_False; --- 1548 unchanged lines hidden --- | 369{ 370 if (rVal >>= maMatrix) 371 { 372 return sal_True; 373 } 374 375 DBG_ERROR( "AffineMatrixItem::PutValue - Wrong type!" ); 376 return sal_False; --- 1548 unchanged lines hidden --- |