blob: 1b94214c187826dae25dd43e0b2af05cf29fa776 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
$NetBSD: patch-spunk_palette.h,v 1.1 2012/11/16 00:37:47 joerg Exp $
--- spunk/palette.h.orig 1996-11-07 18:06:48.000000000 +0000
+++ spunk/palette.h
@@ -40,19 +40,19 @@ extern class Palette* Pal;
// 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
|