2dda59ce1e
As Mirabilis servers have problems w/ v7 protocol, all the Unix ICQ clients work very unstable nowadays - some messages never arrive, or get delivered over an incredible amount of time, etc. Until there is a good free library for icq2000 protocol, the centericq author implemented other IM protocols in the client. With this version, Yahoo and MSN protocol support are introduced.
20 lines
529 B
Plaintext
20 lines
529 B
Plaintext
$OpenBSD: patch-kkconsui-0_1_src_cmenus_cc,v 1.3 2001/12/03 06:05:44 pvalchev Exp $
|
|
--- kkconsui-0.1/src/cmenus.cc.orig Thu Nov 1 15:10:43 2001
|
|
+++ kkconsui-0.1/src/cmenus.cc Sun Dec 2 22:50:32 2001
|
|
@@ -248,6 +248,7 @@ int verticalmenu::open() {
|
|
return 0;
|
|
break;
|
|
|
|
+ case 'k':
|
|
case KEY_UP:
|
|
if(curelem > 0) {
|
|
shownelem(curelem, 0);
|
|
@@ -273,6 +274,7 @@ int verticalmenu::open() {
|
|
}
|
|
break;
|
|
|
|
+ case 'j':
|
|
case KEY_DOWN:
|
|
if(!items.empty()) {
|
|
if(curelem < items.size()-1) {
|