[glibmm] 2.23.4



commit af8b0448e60f2a8521abcc1c0b94da9dff474214
Author: Murray Cumming <murrayc murrayc com>
Date:   Fri Mar 26 11:35:10 2010 +0100

    2.23.4

 ChangeLog                           |    2 ++
 NEWS                                |   19 +++++++++++++++++++
 configure.ac                        |    2 +-
 tests/glibmm_ustring_format/main.cc |    6 ++++--
 4 files changed, 26 insertions(+), 3 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index bc51a9a..cdb3d2a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,5 @@
+2.23.4:
+
 2009-03-26  Jonathon Jongsma  <jonathon jongsma collabora co uk>
 
     Gio::File: Add TypeTraits to fix Gtk::FileChooser::get_files() in gtkmm.
diff --git a/NEWS b/NEWS
index df0bc61..f457a67 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+2.23.4 (unstable):
+
+Gio:
+* File: Add TypeTraits to fix Gtk::FileChooser::get_files() in gtkmm.
+  (Jonathan Jongsma) Bug #590940 (Tomasz Jankowski)
+* MemoryInputStream: Correct data loss/corruption with binary data.
+  (Alexey Kosilin) Bug #609552 (Holger Seelig)
+* ThemedIcon: Added get_names().
+  (Murray Cumming)
+
+Glib:
+* Fix ustring::format(non-const char*) and add regression test.
+  (Debarshi Ray)
+
+Build:
+* tests: Reorder assignment to LDADD and giomm_ldadd in tests/Makefile.am 
+  to always use the built library, not the installed one.
+  (David King) Bug #610854 (Pacho Ramos)
+
 2.23.3 (unstable):
 
 Gio:
diff --git a/configure.ac b/configure.ac
index 6951c93..e53ac25 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@
 ## You should have received a copy of the GNU Lesser General Public License
 ## along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
-AC_INIT([glibmm], [2.23.3],
+AC_INIT([glibmm], [2.23.4],
         [http://bugzilla.gnome.org/enter_bug.cgi?product=glibmm],
         [glibmm], [http://www.gtkmm.org/])
 AC_PREREQ([2.59])
diff --git a/tests/glibmm_ustring_format/main.cc b/tests/glibmm_ustring_format/main.cc
index 1d5dc92..1ed73de 100644
--- a/tests/glibmm_ustring_format/main.cc
+++ b/tests/glibmm_ustring_format/main.cc
@@ -9,14 +9,16 @@ int main(int, char**)
   char carr[10] = "Užduotys";
   char * const cptr = carr;
 
+  /*
   std::wostringstream wsout;
   wsout << carr;
   const std::wstring& wstr = wsout.str();
   const gunichar * const data = reinterpret_cast<const gunichar *>(
                                   wstr.data());
 
-  //for(int i = 0; wstr.size() > i; ++i)
-  //  std::cout << data[i] << std::endl;
+  for(int i = 0; wstr.size() > i; ++i)
+    std::cout << data[i] << std::endl;
+  */
 
   //Check both the const char* and char* versions.
   Glib::ustring::format(carr);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]