mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
059a88c435
of patches to fix the build on -current.
36 lines
1.9 KiB
Plaintext
36 lines
1.9 KiB
Plaintext
--- spunk/palette.h.orig Sat Feb 26 17:52:03 2000
|
|
+++ spunk/palette.h Sat Feb 26 17:52:34 2000
|
|
@@ -40,19 +40,19 @@
|
|
|
|
|
|
// Indices into the palette arrays
|
|
-static const atFrameInactive = 0; // passive frame
|
|
-static const atFrameActive = 1; // active frame
|
|
-static const atFrameResizing = 2; // resizing frame
|
|
-static const atTextNormal = 3; // normal text
|
|
-static const atTextInvers = 4; // inverted text
|
|
-static const atTextSelected = 5; // selected static text
|
|
-static const atTextHigh = 6; // selected text (i.e. hotkeys)
|
|
-static const atTextHighInvers = 7; // inverted selected text
|
|
-static const atTextGrayed = 8; // grey (inactive) text
|
|
-static const atTextGrayedInvers = 9; // dito inverted
|
|
-static const atEditNormal = 10; // normal text in an edit window
|
|
-static const atEditHigh = 11; // i.e. left/right arrows
|
|
-static const atEditBar = 12; // scroll bar (use atEditNormal for text)
|
|
+static const int atFrameInactive = 0; // passive frame
|
|
+static const int atFrameActive = 1; // active frame
|
|
+static const int atFrameResizing = 2; // resizing frame
|
|
+static const int atTextNormal = 3; // normal text
|
|
+static const int atTextInvers = 4; // inverted text
|
|
+static const int atTextSelected = 5; // selected static text
|
|
+static const int atTextHigh = 6; // selected text (i.e. hotkeys)
|
|
+static const int atTextHighInvers = 7; // inverted selected text
|
|
+static const int atTextGrayed = 8; // grey (inactive) text
|
|
+static const int atTextGrayedInvers = 9; // dito inverted
|
|
+static const int atEditNormal = 10; // normal text in an edit window
|
|
+static const int atEditHigh = 11; // i.e. left/right arrows
|
|
+static const int atEditBar = 12; // scroll bar (use atEditNormal for text)
|
|
|
|
|
|
// Palette numbers
|