gtkmm r961 - in branches/gtkmm-2-12: . demos/gtk-demo examples/book/custom/custom_widget



Author: kmaraas
Date: Sat Feb  2 22:56:36 2008
New Revision: 961
URL: http://svn.gnome.org/viewvc/gtkmm?rev=961&view=rev

Log:
2008-02-02  Kjartan Maraas  <kmaraas gnome org>

	* demos/gtk-demo/demowindow.cc:
	* demos/gtk-demo/textwidget.cc:
	* examples/book/custom/custom_widget/mywidget.cc:
	Fix build with GCC 4.3.

Modified:
   branches/gtkmm-2-12/ChangeLog
   branches/gtkmm-2-12/demos/gtk-demo/demowindow.cc
   branches/gtkmm-2-12/demos/gtk-demo/textwidget.cc
   branches/gtkmm-2-12/examples/book/custom/custom_widget/mywidget.cc

Modified: branches/gtkmm-2-12/demos/gtk-demo/demowindow.cc
==============================================================================
--- branches/gtkmm-2-12/demos/gtk-demo/demowindow.cc	(original)
+++ branches/gtkmm-2-12/demos/gtk-demo/demowindow.cc	Sat Feb  2 22:56:36 2008
@@ -31,6 +31,7 @@
 #include <cctype>
 #include <cerrno>
 #include <stdio.h>
+#include <string.h>
 
 #ifdef NEED_FLOCKFILE_PROTO
 extern "C" void flockfile (FILE *);

Modified: branches/gtkmm-2-12/demos/gtk-demo/textwidget.cc
==============================================================================
--- branches/gtkmm-2-12/demos/gtk-demo/textwidget.cc	(original)
+++ branches/gtkmm-2-12/demos/gtk-demo/textwidget.cc	Sat Feb  2 22:56:36 2008
@@ -20,6 +20,7 @@
  */
 
 #include "textwidget.h"
+#include <string.h>
 #include "pangomm/fontdescription.h"
 
 

Modified: branches/gtkmm-2-12/examples/book/custom/custom_widget/mywidget.cc
==============================================================================
--- branches/gtkmm-2-12/examples/book/custom/custom_widget/mywidget.cc	(original)
+++ branches/gtkmm-2-12/examples/book/custom/custom_widget/mywidget.cc	Sat Feb  2 22:56:36 2008
@@ -20,6 +20,7 @@
 #include <gdkmm/drawable.h>
 #include <gdkmm/general.h>  // for cairo helper functions
 #include <iostream>
+#include <string.h>
 //#include <gtk/gtkwidget.h> //For GTK_IS_WIDGET()
 
 



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