If cursorColor is obsolete, let's remove the remaining references.

This commit is contained in:
William McBrine
2006-02-14 00:21:53 +00:00
parent 8d57a7c2aa
commit 0980a811e8
3 changed files with 4 additions and 20 deletions

View File

@@ -112,15 +112,11 @@ pointerForeColor: The foreground colour of the pointer.
pointerBackColor: The background colour of the pointer.
Default: white
cursorColor: The colour of the text cursor.
Default: red
*** This resource is now obsolete and is ignored. ***
textCursor: The alignment of the text cursor; horizontal or vertical.
Default: horizontal
colorBlack: The color of the COLOR_BLACK attribute.
Default: black
Default: Black
colorRed: The color of the COLOR_RED attribute.
Default: red3
@@ -141,7 +137,7 @@ colorCyan: The color of the COLOR_CYAN attribute.
Default: cyan3
colorWhite: The color of the COLOR_WHITE attribute.
Default: grey
Default: Grey
colorBoldBlack: COLOR_BLACK combined with A_BOLD.
Default: grey40
@@ -165,7 +161,7 @@ colorBoldCyan: COLOR_CYAN combined with A_BOLD.
Default: cyan1
colorBoldWhite: COLOR_WHITE combined with A_BOLD.
Default: white
Default: White
bitmap: The name of a valid bitmap file of depth 1 (black and white)
used for the application's icon. The file is an X bitmap.

View File

@@ -15,7 +15,6 @@ testcurs.colorBlack: midnightblue
testcurs.lines: 30
testcurs.normalFont: 7x13
testcurs.boldFont: 7x13bold
testcurs.cursorColor: orange
!
! resources for THE - Xcurses
!

View File

@@ -26,7 +26,7 @@
#ifdef PDCDEBUG
const char *rcsid_PDCx11 =
"$Id: pdcx11.c,v 1.47 2006/02/05 14:27:04 wmcbrine Exp $";
"$Id: pdcx11.c,v 1.48 2006/02/14 00:21:53 wmcbrine Exp $";
#endif
AppData app_data;
@@ -446,16 +446,6 @@ XtResource app_resources[PDC_NUMBER_APP_RESOURCES] =
(XtPointer)80,
},
{
XtNcursorColor,
XtCCursorColor,
XtRPixel,
sizeof(Pixel),
XtOffsetOf(AppData, cursorColor),
XtRString,
(XtPointer)"Red",
},
{
XtNcolorBlack,
XtCColorBlack,
@@ -810,7 +800,6 @@ XrmOptionDescRec options[PDC_NUMBER_OPTIONS] =
{"-pointerForeColor", "*pointerForeColor", XrmoptionSepArg, NULL },
{"-pointerBackColor", "*pointerBackColor", XrmoptionSepArg, NULL },
{"-cursorBlinkRate", "*cursorBlinkRate", XrmoptionSepArg, NULL },
{"-cursorColor", "*cursorColor", XrmoptionSepArg, NULL },
{"-textCursor", "*textCursor", XrmoptionSepArg, NULL },
{"-colorBlack", "*colorBlack", XrmoptionSepArg, NULL },
{"-colorRed", "*colorRed", XrmoptionSepArg, NULL },