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
38
39
40
41
42
|
$NetBSD: patch-au,v 1.3 1999/12/12 19:06:38 jdolecek Exp $
Obsolete, kvt is not part of KDE2 jdolecek 1999/12/12
--- ./kvt/resources.c Tue Mar 30 10:23:19 1999
+++ /usr/pkgsrc/x11/kdebase/work.i386.unpatched/kdebase-1.1.2/kvt/resources.c Fri Nov 12 05:10:31 1999
@@ -28,8 +28,6 @@
extern int login_shell,fat_sbar, MetaHandling;
extern WindowInfo MyWinInfo;
extern KeySym SecureKeysym;
-extern KeySym BigFontKeysym;
-extern KeySym SmallFontKeysym;
extern KeySym PageUpKeysym;
extern KeySym PageDownKeysym;
#ifdef MAPALERT
@@ -48,7 +46,6 @@
char *mask_string = NULL, *login_shell_string = NULL, *scrollbar = NULL;
char* SecureKeysym_string=NULL;
-char *BigFontKeysym_string = NULL, *SmallFontKeysym_string = NULL;
char *PageUpKeysym_string = NULL, *PageDownKeysym_string = NULL;
#ifdef GREEK_KBD
char *elot_string = NULL;
@@ -75,8 +72,6 @@
{&saveLines_string, "saveLines"},
{&meta_string, "meta"},
{&SecureKeysym_string, "secure_key"},
- {&BigFontKeysym_string, "bigger_font_key"},
- {&SmallFontKeysym_string, "smaller_font_key"},
{&PageUpKeysym_string, "page_up_key"},
{&PageDownKeysym_string, "page_down_key"},
#ifdef MAPALERT
@@ -137,10 +132,6 @@
if(SecureKeysym_string)
SecureKeysym = XStringToKeysym(SecureKeysym_string);
- if(BigFontKeysym_string)
- BigFontKeysym = XStringToKeysym(BigFontKeysym_string);
- if(SmallFontKeysym_string)
- SmallFontKeysym = XStringToKeysym(SmallFontKeysym_string);
if(PageUpKeysym_string)
PageUpKeysym = XStringToKeysym(PageUpKeysym_string);
if(PageDownKeysym_string)
|