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

Daniel Burrows dburrows@costa.debian.org
Mon, 06 Jun 2005 18:19:53 +0000


Author: dburrows
Date: Mon Jun  6 18:19:51 2005
New Revision: 3325

Modified:
   branches/aptitude-0.3/aptitude/ChangeLog
   branches/aptitude-0.3/aptitude/src/vscreen/vs_pager.cc
   branches/aptitude-0.3/aptitude/src/vscreen/vs_pager.h
Log:
Update the pager for the new display protocol.

Modified: branches/aptitude-0.3/aptitude/ChangeLog
==============================================================================
--- branches/aptitude-0.3/aptitude/ChangeLog	(original)
+++ branches/aptitude-0.3/aptitude/ChangeLog	Mon Jun  6 18:19:51 2005
@@ -1,5 +1,9 @@
 2005-06-06  Daniel Burrows  <dburrows@debian.org>
 
+	* src/vscreen/vs_pager.cc:
+
+	Update the pager for the new display protocol.
+
 	* src/vscreen/vs_util.cc, src/vscreen/vs_util.h:
 
 	Update the vscreen dialog utilities to use styles instead of

Modified: branches/aptitude-0.3/aptitude/src/vscreen/vs_pager.cc
==============================================================================
--- branches/aptitude-0.3/aptitude/src/vscreen/vs_pager.cc	(original)
+++ branches/aptitude-0.3/aptitude/src/vscreen/vs_pager.cc	Mon Jun  6 18:19:51 2005
@@ -234,7 +234,7 @@
   do_column_signal();
 }
 
-void vs_pager::paint()
+void vs_pager::paint(const style &st)
 {
   int width,height;
   getmaxyx(height, width);

Modified: branches/aptitude-0.3/aptitude/src/vscreen/vs_pager.h
==============================================================================
--- branches/aptitude-0.3/aptitude/src/vscreen/vs_pager.h	(original)
+++ branches/aptitude-0.3/aptitude/src/vscreen/vs_pager.h	Mon Jun  6 18:19:51 2005
@@ -119,7 +119,7 @@
 
   virtual bool handle_char(chtype ch);
   virtual bool focus_me() {return true;}
-  virtual void paint();
+  virtual void paint(const style &st);
 
   int width_request();
   int height_request(int w);