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

Daniel Burrows dburrows at costa.debian.org
Thu Aug 18 22:35:46 UTC 2005


Author: dburrows
Date: Thu Aug 18 22:35:42 2005
New Revision: 3919

Modified:
   branches/aptitude-0.3/aptitude/ChangeLog
   branches/aptitude-0.3/aptitude/src/solution_fragment.cc
Log:
Add a newline after each note about an unresolved recommendation.

Modified: branches/aptitude-0.3/aptitude/ChangeLog
==============================================================================
--- branches/aptitude-0.3/aptitude/ChangeLog	(original)
+++ branches/aptitude-0.3/aptitude/ChangeLog	Thu Aug 18 22:35:42 2005
@@ -1,5 +1,10 @@
 2005-08-18  Daniel Burrows  <dburrows at debian.org>
 
+	* src/solution_fragment.cc:
+
+	  Add a newline after each note about an unresolved
+	  recommendation.
+
 	* src/solution_screen.cc:
 
 	  Fix the text displayed for a 'story' in the curses interface

Modified: branches/aptitude-0.3/aptitude/src/solution_fragment.cc
==============================================================================
--- branches/aptitude-0.3/aptitude/src/solution_fragment.cc	(original)
+++ branches/aptitude-0.3/aptitude/src/solution_fragment.cc	Thu Aug 18 22:35:42 2005
@@ -297,7 +297,7 @@
 
       for(set<aptitude_universe::dep>::const_iterator i = unresolved.begin();
 	  i != unresolved.end(); ++i)
-	fragments.push_back(text_fragment(dep_text((*i).get_dep())));
+	fragments.push_back(fragf("%ls%n", dep_text((*i).get_dep()).c_str()));
     }
 
   char buf[512];



More information about the Aptitude-svn-commit mailing list