glom r1592 - in trunk: . glom glom/libglom glom/libglom/data_structure glom/libglom/document glom/translation glom/utility_widgets



Author: murrayc
Date: Fri Apr 25 15:12:43 2008
New Revision: 1592
URL: http://svn.gnome.org/viewvc/glom?rev=1592&view=rev

Log:
2008-04-25  Jeremiah Savage  <jeremiahsavage gmail com>

* glom/libglom/connectionpool.cc:
* glom/libglom/data_structure/glomconversions.cc:
* glom/libglom/document/document_glom.h:
* glom/libglom/utils.cc:
* glom/translation/window_translations.cc: Add <cstring> includes to 
fix the build with gcc 4.3.
Bug #529530

Modified:
   trunk/ChangeLog
   trunk/glom/dialog_existing_or_new.h
   trunk/glom/libglom/connectionpool.cc
   trunk/glom/libglom/data_structure/glomconversions.cc
   trunk/glom/libglom/document/document_glom.h
   trunk/glom/libglom/utils.cc
   trunk/glom/translation/window_translations.cc
   trunk/glom/utility_widgets/placeholder-glom.cc

Modified: trunk/glom/dialog_existing_or_new.h
==============================================================================
--- trunk/glom/dialog_existing_or_new.h	(original)
+++ trunk/glom/dialog_existing_or_new.h	Fri Apr 25 15:12:43 2008
@@ -26,6 +26,7 @@
 #endif
 
 #include <memory>
+#include <ctime> // for time_t
 #include <giomm/asyncresult.h>
 #include <giomm/file.h>
 #include <giomm/fileenumerator.h>

Modified: trunk/glom/libglom/connectionpool.cc
==============================================================================
--- trunk/glom/libglom/connectionpool.cc	(original)
+++ trunk/glom/libglom/connectionpool.cc	Fri Apr 25 15:12:43 2008
@@ -55,7 +55,7 @@
 #endif
 
 #include <signal.h> //To catch segfaults
-
+#include <string.h> // for memset
 #include "gst-package.h"
 
 /* TODO: Should this be used in clientonly mode? */

Modified: trunk/glom/libglom/data_structure/glomconversions.cc
==============================================================================
--- trunk/glom/libglom/data_structure/glomconversions.cc	(original)
+++ trunk/glom/libglom/data_structure/glomconversions.cc	Fri Apr 25 15:12:43 2008
@@ -30,7 +30,7 @@
 #include <ctime>     // for struct tm
 #include <iostream>   // for cout, endl
 #include <iomanip>
-
+#include <string.h> // for strlen, memset, strcmp
 
 namespace Glom
 {

Modified: trunk/glom/libglom/document/document_glom.h
==============================================================================
--- trunk/glom/libglom/document/document_glom.h	(original)
+++ trunk/glom/libglom/document/document_glom.h	Fri Apr 25 15:12:43 2008
@@ -41,6 +41,7 @@
 #include <gtkmm/window.h>
 #include <vector>
 #include <map>
+#include <limits> // for numeric_limits
 
 namespace Glom
 {

Modified: trunk/glom/libglom/utils.cc
==============================================================================
--- trunk/glom/libglom/utils.cc	(original)
+++ trunk/glom/libglom/utils.cc	Fri Apr 25 15:12:43 2008
@@ -34,6 +34,7 @@
 #include <hildonmm/note.h>
 #endif
 
+#include <string.h> // for strchr
 #include <sstream> //For stringstream
 
 #include <iostream>

Modified: trunk/glom/translation/window_translations.cc
==============================================================================
--- trunk/glom/translation/window_translations.cc	(original)
+++ trunk/glom/translation/window_translations.cc	Fri Apr 25 15:12:43 2008
@@ -27,6 +27,7 @@
 #include "glom/libglom/glade_utils.h"
 
 #include <glibmm/i18n.h>
+#include <string.h> // for memset
 
 // To read the .po files
 #include <gettext-po.h>

Modified: trunk/glom/utility_widgets/placeholder-glom.cc
==============================================================================
--- trunk/glom/utility_widgets/placeholder-glom.cc	(original)
+++ trunk/glom/utility_widgets/placeholder-glom.cc	Fri Apr 25 15:12:43 2008
@@ -27,6 +27,7 @@
 #include <gtkmm/messagedialog.h>
 #include "../application.h"
 #include <glibmm/i18n.h>
+#include <string.h> // for memset
 
 namespace Glom
 {



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