[Aptitude-svn-commit] r3316 - in branches/aptitude-0.3/aptitude: . src/vscreen

Daniel Burrows dburrows@costa.debian.org
Mon, 06 Jun 2005 17:51:20 +0000


Author: dburrows
Date: Mon Jun  6 17:51:18 2005
New Revision: 3316

Modified:
   branches/aptitude-0.3/aptitude/ChangeLog
   branches/aptitude-0.3/aptitude/src/vscreen/vs_size_box.cc
Log:
Update the size-box to use set_opaque() instead of set_bg().

Modified: branches/aptitude-0.3/aptitude/ChangeLog
==============================================================================
--- branches/aptitude-0.3/aptitude/ChangeLog	(original)
+++ branches/aptitude-0.3/aptitude/ChangeLog	Mon Jun  6 17:51:18 2005
@@ -1,5 +1,9 @@
 2005-06-06  Daniel Burrows  <dburrows@debian.org>
 
+	* src/vscreen/vs_size_box.cc:
+
+	Update the size-box to use set_opaque() instead of set_bg().
+
 	* src/vscreen/vs_minibuf_win.cc, src/vscreen/vs_minibuf_win.:h:
 
 	Update the minibuf-win for the new display protocol.

Modified: branches/aptitude-0.3/aptitude/src/vscreen/vs_size_box.cc
==============================================================================
--- branches/aptitude-0.3/aptitude/src/vscreen/vs_size_box.cc	(original)
+++ branches/aptitude-0.3/aptitude/src/vscreen/vs_size_box.cc	Mon Jun  6 17:51:18 2005
@@ -13,7 +13,7 @@
 vs_size_box::vs_size_box(size s, vscreen_widget *w):min_size(s)
 {
   set_subwidget(w);
-  set_bg(-1); // Make the background 'invisible'.
+  set_opaque(false);
 
   do_layout.connect(sigc::mem_fun(*this, &vs_size_box::layout_me));
 }