summaryrefslogtreecommitdiff
path: root/dselect/pkgtop.cc
diff options
context:
space:
mode:
authorWichert Akkerman <wakkerma@debian.org>1999-12-22 12:21:17 +0000
committerWichert Akkerman <wakkerma@debian.org>1999-12-22 12:21:17 +0000
commitd96f65430b135ccf42952391016773a0b3e6ed73 (patch)
tree52b1d6d151bc14739ac8db3ad68b4dcd3e838aad /dselect/pkgtop.cc
parent577defbdd00402901f82f9b52a815d6d5640467a (diff)
downloaddpkg-d96f65430b135ccf42952391016773a0b3e6ed73.tar.gz
debian/dpkg-doc.postrm: Use doc-name instead of file-name
dselect/pkgdisplay.cc: Replace empty string for eflags to a space so gettext doesn't use the translation-info po/update.sh: Generate dselect/helpmsgs.{cc,h} so we can translate them. po/POTFILES.in: add dselect/helpmsgs.cc dselect/pkgtop.cc: use ACS_HLINE instead of `-' dselect/baselist.cc: change colour of column headings dselect: add a new --export mode which suppresses the display of the helpscreen
Diffstat (limited to 'dselect/pkgtop.cc')
-rw-r--r--dselect/pkgtop.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dselect/pkgtop.cc b/dselect/pkgtop.cc
index e984b3097..1b5420ac4 100644
--- a/dselect/pkgtop.cc
+++ b/dselect/pkgtop.cc
@@ -235,9 +235,9 @@ void packagelist::redraw1itemsel(int index, int selected) {
indent= describemany(buf,priority,section,pkg->clientdata);
mvwaddstr(listpad,index,0, " ");
- i= total_width-6;
+ i= total_width-7;
j= (indent<<1) + 1;
- while (j-- >0) { waddch(listpad,'-'); i--; }
+ while (j-- >0) { waddch(listpad,ACS_HLINE); i--; }
waddch(listpad,' ');
wattrset(listpad, selected ? selstatesel_attr : selstate_attr);
@@ -247,7 +247,7 @@ void packagelist::redraw1itemsel(int index, int selected) {
waddch(listpad,' ');
j= (indent<<1) + 1;
- while (j-- >0) { waddch(listpad,'-'); i--; }
+ while (j-- >0) { waddch(listpad,ACS_HLINE); i--; }
delete[] buf;