[gtkmm] 2.91.3



commit 2caed5da85fa477ecde5625b6c5c47d5aa09b617
Author: Murray Cumming <murrayc murrayc com>
Date:   Tue Nov 2 12:58:16 2010 +0100

    2.91.3

 ChangeLog                   |    4 ++++
 NEWS                        |   12 ++++++++++++
 configure.ac                |    4 ++--
 tests/child_widget2/main.cc |    4 ++--
 4 files changed, 20 insertions(+), 4 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 031f1f2..c254e28 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
+2.91.3:
+
 2010-11-02  Murray Cumming  <murrayc murrayc com>
 
+  Fix the make check build.
+
   * gtk/gtkmm.h: Add a gdkmm/dragcontext.h include that fixes a weird
   compilation problem in the tests (during make check). We need to find out
   what the real problem is.
diff --git a/NEWS b/NEWS
index 0b551a4..7e065a1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,15 @@
+2.91.3 (unstable):
+
+Gtk:
+* Assistant: Added next_page() and previous_page().
+* Box: Added a public constructor.
+* RecentInfo: Added create_app_info().
+* Scrollable: Added get/set_h/vscroll_policy().
+* Widget: Added in_destruction().
+  (Murray Cumming)
+* Style: Correct the reference counting when deriving.
+  (José Alburquerque)
+
 2.91.2 (unstable):
 
 Gdk:
diff --git a/configure.ac b/configure.ac
index a9e08df..8e2015b 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([gtkmm], [2.91.2],
+AC_INIT([gtkmm], [2.91.3],
         [http://bugzilla.gnome.org/enter_bug.cgi?product=gtkmm],
         [gtkmm], [http://www.gtkmm.org/])
 AC_PREREQ([2.59])
@@ -54,7 +54,7 @@ AS_IF([test "x$enable_static" = xyes],
 
 # gdkmm really does need GTK+, because part of Gdk::DragContext is in GTK+.
 # The extra cairomm check is because gdkmm requires a newer cairomm than pangomm requires.
-AC_SUBST([GDKMM_MODULES], ['giomm-2.4 >= 2.27.0 pangomm-1.4 >= 2.26 gtk+-3.0 >= 2.91.2 cairomm-1.0 >= 1.9.2'])
+AC_SUBST([GDKMM_MODULES], ['giomm-2.4 >= 2.27.0 pangomm-1.4 >= 2.26 gtk+-3.0 >= 2.91.3 cairomm-1.0 >= 1.9.2'])
 
 AS_IF([test "x$gtkmm_host_windows" = xyes],
       [GTKMM_MODULES=$GDKMM_MODULES],
diff --git a/tests/child_widget2/main.cc b/tests/child_widget2/main.cc
index 8cfbd44..9d280c4 100644
--- a/tests/child_widget2/main.cc
+++ b/tests/child_widget2/main.cc
@@ -9,7 +9,7 @@ private:
   Gtk::VBox vbox;
 };
 
-MyWindow::MyWindow() : 
+MyWindow::MyWindow() :
   b("hello"),
   vbox()
 {
@@ -21,7 +21,7 @@ MyWindow::MyWindow() :
 int main (int argc, char *argv[])
 {
   Gtk::Main kit(argc, argv);
-  
+
   MyWindow window;
   kit.run(window);
 



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