INTEGRATION: CWS presentationengine01 (1.2.2); FILE MERGED

2004/07/20 19:09:05 thb 1.2.2.3: #110496# Unified include statements; removed external prefix from boost includes
2004/05/27 20:51:29 thb 1.2.2.2: #110496#
Added classification code to all TODO/HACK/FIXME comments.
There are four categories:
 - code quality (C)
 - performance (P)
 - missing functionality (F)
 - and missing/incomplete error handling (E)

Furthermore, every category has a severity number between
1 and 3 associated, where 1 is lowest and 3 highest
severity
2004/04/05 15:58:52 thb 1.2.2.1: Resync with canvas01 changes
This commit is contained in:
Rüdiger Timm
2004-11-26 20:00:13 +00:00
parent 0cca9757de
commit 06080bb49d

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: implcolor.cxx,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: thb $ $Date: 2004-03-18 10:41:10 $
* last change: $Author: rt $ $Date: 2004-11-26 21:00:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,8 +59,8 @@
*
************************************************************************/
#include "implcolor.hxx"
#include "tools.hxx"
#include <implcolor.hxx>
#include <tools.hxx>
using namespace ::drafts::com::sun::star;
using namespace ::com::sun::star;
@@ -84,7 +84,7 @@ namespace cppcanvas
{
OSL_ENSURE( mxDevice.is(), "ImplColor::getIntSRGBA(): Invalid graphic device" );
// TODO: Color space handling
// TODO(F1): Color space handling
return tools::doubleSequenceToIntSRGBA( mxDevice, rDeviceColor );
}
@@ -92,7 +92,7 @@ namespace cppcanvas
{
OSL_ENSURE( mxDevice.is(), "ImplColor::getDeviceColor(): Invalid graphic device" );
// TODO: Color space handling
// TODO(F1): Color space handling
return tools::intSRGBAToDoubleSequence( mxDevice, aSRGBA );
}