struct Window {
int height, width, top, left;
- short * buffer;
+ SLsmg_Char_Type * buffer;
char * title;
};
currentWindow->height = height;
currentWindow->title = title ? strdup(title) : NULL;
- currentWindow->buffer = malloc(sizeof(short) * (width + 3) * (height + 3));
+ currentWindow->buffer = malloc(sizeof(SLsmg_Char_Type) * (width + 3) * (height + 3));
row = top - 1;
col = left - 1;
Summary: A development library for text mode user interfaces.
Name: newt
-%define version 0.50.36
+%define version 0.50.37
Version: %{version}
Release: 1
License: LGPL
/usr/lib/libnewt.so
%changelog
+* Mon Jun 24 2002 Bill Nottingham <notting@redhat.com> 0.50.37-1
+- minor tweaks for use with UTF-8 slang
+
* Tue Jun 11 2002 Joe Orton <jorton@redhat.com> 0.50.36-1
- add newtListboxGetItemCount() API call
- include numeric percentage in scale widget appearace