summaryrefslogtreecommitdiff
path: root/include/vcl/salgtype.hxx
diff options
context:
space:
mode:
authorAlexandre Vicenzi <vicenzi.alexandre@gmail.com>2014-01-29 21:54:21 -0200
committerCaolán McNamara <caolanm@redhat.com>2014-01-30 11:23:50 +0000
commit1984bb05de38a6f4b23b422f1d4156670d493ba1 (patch)
tree871d9b929e24a275d8f0d908c975c9362389b744 /include/vcl/salgtype.hxx
parentc5685ec791fbce43e982ffecc9e062063ec7e3d7 (diff)
fdo#63154 Removed unused solar.h ref. in vcl
Change-Id: I038c941559a275c43c2be7d5453ca4c37390f343 Reviewed-on: https://gerrit.libreoffice.org/7733 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl/salgtype.hxx')
-rw-r--r--include/vcl/salgtype.hxx21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/vcl/salgtype.hxx b/include/vcl/salgtype.hxx
index 95a1f8b99589..dc219047f48f 100644
--- a/include/vcl/salgtype.hxx
+++ b/include/vcl/salgtype.hxx
@@ -20,21 +20,12 @@
#ifndef INCLUDED_VCL_SALGTYPE_HXX
#define INCLUDED_VCL_SALGTYPE_HXX
-#include <tools/solar.h>
-
-// ------------
-// - SalColor -
-// ------------
-
typedef sal_uInt32 SalColor;
#define MAKE_SALCOLOR( r, g, b ) ((SalColor)(((sal_uInt32)((sal_uInt8)(b))))|(((sal_uInt32)((sal_uInt8)(g)))<<8)|(((sal_uInt32)((sal_uInt8)(r)))<<16))
#define SALCOLOR_RED( n ) ((sal_uInt8)((n)>>16))
#define SALCOLOR_GREEN( n ) ((sal_uInt8)(((sal_uInt16)(n)) >> 8))
#define SALCOLOR_BLUE( n ) ((sal_uInt8)(n))
#define SALCOLOR_NONE (~(SalColor)0)
-// ------------
-// - SalPoint -
-// ------------
// must equal to class Point
struct SalPoint
@@ -45,10 +36,6 @@ struct SalPoint
typedef const SalPoint* PCONSTSALPOINT;
-// --------------
-// - SalTwoRect -
-// --------------
-
struct SalTwoRect
{
long mnSrcX;
@@ -61,19 +48,11 @@ struct SalTwoRect
long mnDestHeight;
};
-// ---------------
-// - SalROPColor -
-// ---------------
-
typedef sal_uInt16 SalROPColor;
#define SAL_ROP_0 ((SalROPColor)0)
#define SAL_ROP_1 ((SalROPColor)1)
#define SAL_ROP_INVERT ((SalROPColor)2)
-// -------------
-// - SalInvert -
-// -------------
-
typedef sal_uInt16 SalInvert;
#define SAL_INVERT_HIGHLIGHT ((SalInvert)0x0001)
#define SAL_INVERT_50 ((SalInvert)0x0002)