diff options
author | Stephan Schäfer <ssa@openoffice.org> | 2002-10-08 12:24:49 +0000 |
---|---|---|
committer | Stephan Schäfer <ssa@openoffice.org> | 2002-10-08 12:24:49 +0000 |
commit | 809aa188c3b4b0e643ced7f8e4b1cf08218dfb44 (patch) | |
tree | 74d3deefed1b119ddfb058389bb83e3dc8699627 /vcl/win | |
parent | 886593b1b12df5e439b42d758ab18193ddeb8775 (diff) |
#87660# new cursor
Diffstat (limited to 'vcl/win')
-rw-r--r-- | vcl/win/inc/salids.hrc | 5 | ||||
-rw-r--r-- | vcl/win/source/src/MAKEFILE.MK | 5 | ||||
-rw-r--r-- | vcl/win/source/src/salsrc.rc | 5 | ||||
-rw-r--r-- | vcl/win/source/window/salframe.cxx | 7 |
4 files changed, 13 insertions, 9 deletions
diff --git a/vcl/win/inc/salids.hrc b/vcl/win/inc/salids.hrc index 4d56a9b27bbb..60e78e6b3735 100644 --- a/vcl/win/inc/salids.hrc +++ b/vcl/win/inc/salids.hrc @@ -2,9 +2,9 @@ * * $RCSfile: salids.hrc,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: th $ $Date: 2000-11-15 20:52:59 $ + * last change: $Author: ssa $ $Date: 2002-10-08 13:23:41 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -139,6 +139,7 @@ #define SAL_RESID_POINTER_AUTOSCROLL_NSWE 10069 #define SAL_RESID_POINTER_AIRBRUSH 10070 #define SAL_RESID_POINTER_TEXT_VERTICAL 10071 +#define SAL_RESID_POINTER_PIVOT_DELETE 10072 #define SAL_RESID_BITMAP_50 11000 diff --git a/vcl/win/source/src/MAKEFILE.MK b/vcl/win/source/src/MAKEFILE.MK index 14a097e217c6..c21a8c8b1c2c 100644 --- a/vcl/win/source/src/MAKEFILE.MK +++ b/vcl/win/source/src/MAKEFILE.MK @@ -3,8 +3,8 @@ #* $Workfile: makefile. $ #* #* Ersterstellung TH 01.04.97 -#* Letzte Aenderung $Author: th $ $Date: 2000-11-15 20:44:59 $ -#* $Revision: 1.2 $ +#* Letzte Aenderung $Author: ssa $ $Date: 2002-10-08 13:24:18 $ +#* $Revision: 1.3 $ #* #* $Logfile: T:/vcl/win/source/src/makefile.__v $ #* @@ -80,6 +80,7 @@ RCDEPN= nullptr.cur \ pivotcol.cur \ pivotrow.cur \ pivotfld.cur \ + pivotdel.cur \ chain.cur \ chainnot.cur \ timemove.cur \ diff --git a/vcl/win/source/src/salsrc.rc b/vcl/win/source/src/salsrc.rc index b3d9fa8262cb..23daec3cab85 100644 --- a/vcl/win/source/src/salsrc.rc +++ b/vcl/win/source/src/salsrc.rc @@ -2,9 +2,9 @@ * * $RCSfile: salsrc.rc,v $ * -* $Revision: 1.2 $ +* $Revision: 1.3 $ * -* last change: $Author: th $ $Date: 2000-11-15 20:44:19 $ +* last change: $Author: ssa $ $Date: 2002-10-08 13:24:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -126,6 +126,7 @@ SAL_RESID_POINTER_DETECTIVE CURSOR DETECTIV.CUR SAL_RESID_POINTER_PIVOT_COL CURSOR PIVOTCOL.CUR SAL_RESID_POINTER_PIVOT_ROW CURSOR PIVOTROW.CUR SAL_RESID_POINTER_PIVOT_FIELD CURSOR PIVOTFLD.CUR +SAL_RESID_POINTER_PIVOT_DELETE CURSOR PIVOTDEL.CUR SAL_RESID_POINTER_CHAIN CURSOR CHAIN.CUR SAL_RESID_POINTER_CHAIN_NOTALLOWED CURSOR CHAINNOT.CUR SAL_RESID_POINTER_TIMEEVENT_MOVE CURSOR TIMEMOVE.CUR diff --git a/vcl/win/source/window/salframe.cxx b/vcl/win/source/window/salframe.cxx index 58057840edea..6d44e5cf1213 100644 --- a/vcl/win/source/window/salframe.cxx +++ b/vcl/win/source/window/salframe.cxx @@ -2,9 +2,9 @@ * * $RCSfile: salframe.cxx,v $ * - * $Revision: 1.64 $ + * $Revision: 1.65 $ * - * last change: $Author: ssa $ $Date: 2002-09-25 14:06:10 $ + * last change: $Author: ssa $ $Date: 2002-10-08 13:24:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1919,6 +1919,7 @@ void SalFrame::SetPointer( PointerStyle ePointerStyle ) { 0, 0, SAL_RESID_POINTER_PIVOT_COL }, // POINTER_PIVOT_COL { 0, 0, SAL_RESID_POINTER_PIVOT_ROW }, // POINTER_PIVOT_ROW { 0, 0, SAL_RESID_POINTER_PIVOT_FIELD }, // POINTER_PIVOT_FIELD + { 0, 0, SAL_RESID_POINTER_PIVOT_DELETE }, // POINTER_PIVOT_DELETE { 0, 0, SAL_RESID_POINTER_CHAIN }, // POINTER_CHAIN { 0, 0, SAL_RESID_POINTER_CHAIN_NOTALLOWED }, // POINTER_CHAIN_NOTALLOWED { 0, 0, SAL_RESID_POINTER_TIMEEVENT_MOVE }, // POINTER_TIMEEVENT_MOVE @@ -1938,7 +1939,7 @@ void SalFrame::SetPointer( PointerStyle ePointerStyle ) { 0, 0, SAL_RESID_POINTER_TEXT_VERTICAL } // POINTER_TEXT_VERTICAL }; -#if POINTER_COUNT != 87 +#if POINTER_COUNT != 88 #error New Pointer must be defined! #endif |