diff options
Diffstat (limited to 'x11/kdebase/patches/patch-af')
-rw-r--r-- | x11/kdebase/patches/patch-af | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/x11/kdebase/patches/patch-af b/x11/kdebase/patches/patch-af new file mode 100644 index 00000000000..f4db0c523f7 --- /dev/null +++ b/x11/kdebase/patches/patch-af @@ -0,0 +1,39 @@ +--- kvt/resources.c.orig Thu Dec 11 16:31:47 1997 ++++ kvt/resources.c Wed Mar 25 11:07:12 1998 +@@ -27,8 +27,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 +@@ -47,7 +45,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; +@@ -74,8 +71,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 +@@ -136,10 +131,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) |