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

Daniel Burrows dburrows@costa.debian.org
Sat, 25 Jun 2005 17:30:50 +0000


Author: dburrows
Date: Sat Jun 25 17:30:48 2005
New Revision: 3427

Modified:
   branches/aptitude-0.3/aptitude/ChangeLog
   branches/aptitude-0.3/aptitude/src/vscreen/transcode.cc
Log:
Correct the name of the transcoding function.

Modified: branches/aptitude-0.3/aptitude/ChangeLog
==============================================================================
--- branches/aptitude-0.3/aptitude/ChangeLog	(original)
+++ branches/aptitude-0.3/aptitude/ChangeLog	Sat Jun 25 17:30:48 2005
@@ -1,5 +1,10 @@
 2005-06-25  Daniel Burrows  <dburrows@debian.org>
 
+	* src/vscreen/transcode.cc:
+
+	  Doh, correct the actual name of the transcoding function.
+	  Everything links now.
+
 	* src/vscreen/vs_button.cc, src/vscreen/vs_layout_item.cc, src/vscreen/vs_layout_item.h:
 
 	  Update places where chstring was explicitly used to call on

Modified: branches/aptitude-0.3/aptitude/src/vscreen/transcode.cc
==============================================================================
--- branches/aptitude-0.3/aptitude/src/vscreen/transcode.cc	(original)
+++ branches/aptitude-0.3/aptitude/src/vscreen/transcode.cc	Sat Jun 25 17:30:48 2005
@@ -25,9 +25,9 @@
 
 using namespace std;
 
-bool decode_multibyte(const char *s,
-		      wstring &out,
-		      const char *encoding)
+bool transcode(const char *s,
+	       wstring &out,
+	       const char *encoding)
 {
   if(encoding == NULL)
     encoding=setlocale(LC_CTYPE, NULL);