[gtkmm-documentation] 2.91.6



commit 4dd907195b2b7d48c5069328a81437dfc2d7499e
Author: Murray Cumming <murrayc murrayc com>
Date:   Wed Dec 8 12:05:59 2010 +0100

    2.91.6

 ChangeLog                                          |    2 ++
 NEWS                                               |    5 +++++
 configure.ac                                       |    4 ++--
 .../dialogs/colorselectiondialog/examplewindow.cc  |    2 +-
 4 files changed, 10 insertions(+), 3 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index a9a2aef..5632b2c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,5 @@
+2.91.6:
+
 2010-12-07  Murray Cumming  <murrayc murrayc com>
 
 	Fix the build with the latest gtkmm from git master.
diff --git a/NEWS b/NEWS
index 25f2647..5c4586f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+2.91.6: (unstable):
+
+* Ported to the recent gtkmm API, using Gdk::RGBA and Gtk::StyleContext 
+  and the slightly-changed ComboBoxText API.
+
 2.91.5: (unstable):
 
 * Removed use of widgets removed from gtkmm.
diff --git a/configure.ac b/configure.ac
index eb6a056..84a7da8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
 ## This file is part of gtkmm-documentation.
 
 AC_PREREQ([2.59])
-AC_INIT([gtkmm-documentation], [2.91.5],
+AC_INIT([gtkmm-documentation], [2.91.6],
         [http://bugzilla.gnome.org/enter_bug.cgi?product=gtkmm],
         [gtkmm-documentation], [http://www.gtkmm.org/])
 
@@ -19,7 +19,7 @@ AC_PROG_CXX
 AC_PATH_PROG([PERL], [perl], [perl])
 
 PKG_CHECK_MODULES([GIOMM], [giomm-2.4 >= 2.24.0])
-PKG_CHECK_MODULES([GTKMM], [gtkmm-3.0 >= 2.91.5])
+PKG_CHECK_MODULES([GTKMM], [gtkmm-3.0 >= 2.91.6])
 MM_PKG_CONFIG_SUBST([GTHREAD_CFLAGS], [--cflags-only-other gthread-2.0])
 
 AC_LANG([C++])
diff --git a/examples/book/dialogs/colorselectiondialog/examplewindow.cc b/examples/book/dialogs/colorselectiondialog/examplewindow.cc
index 583bb73..48c0c30 100644
--- a/examples/book/dialogs/colorselectiondialog/examplewindow.cc
+++ b/examples/book/dialogs/colorselectiondialog/examplewindow.cc
@@ -33,7 +33,7 @@ ExampleWindow::ExampleWindow()
 
   //Set start color:
   m_Color.set_red(0);
-  m_Color.set_blue(65535);
+  m_Color.set_blue(1);
   m_Color.set_green(0);
   m_Button.set_rgba(m_Color);
 



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