glom r2002 - in trunk: . glom glom/bakery glom/libglom/connectionpool_backends glom/libglom/data_structure glom/libglom/document/bakery glom/libglom/document/bakery/view glom/translation



Author: murrayc
Date: Wed Mar 18 11:21:15 2009
New Revision: 2002
URL: http://svn.gnome.org/viewvc/glom?rev=2002&view=rev

Log:
2009-03-18  Murray Cumming  <murrayc murrayc com>

* glom/application.cc:
* glom/bakery/App_Gtk.cc:
* glom/bakery/App_WithDoc.cc:
* glom/bakery/App_WithDoc_Gtk.cc:
* glom/bakery/Dialog_OfferSave.cc:
* glom/bakery/GtkDialogs.cc:
* glom/libglom/connectionpool_backends/postgres_self.cc:
* glom/libglom/data_structure/iso_codes.cc:
* glom/libglom/document/bakery/Document.cc:
* glom/libglom/document/bakery/view/View.h:
* glom/main.cc:
* glom/translation/window_translations.cc: Include config.h using <> 
instead of , to be consistent with elsewhere.

Modified:
   trunk/ChangeLog
   trunk/glom/application.cc
   trunk/glom/bakery/App_Gtk.cc
   trunk/glom/bakery/App_WithDoc.cc
   trunk/glom/bakery/App_WithDoc_Gtk.cc
   trunk/glom/bakery/Dialog_OfferSave.cc
   trunk/glom/bakery/GtkDialogs.cc
   trunk/glom/libglom/connectionpool_backends/postgres_self.cc
   trunk/glom/libglom/data_structure/iso_codes.cc
   trunk/glom/libglom/document/bakery/Document.cc
   trunk/glom/libglom/document/bakery/view/View.h
   trunk/glom/main.cc
   trunk/glom/translation/window_translations.cc

Modified: trunk/glom/application.cc
==============================================================================
--- trunk/glom/application.cc	(original)
+++ trunk/glom/application.cc	Wed Mar 18 11:21:15 2009
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "config.h" //For VERSION, GLOM_ENABLE_CLIENT_ONLY, GLOM_ENABLE_SQLITE
+#include <config.h> //For VERSION, GLOM_ENABLE_CLIENT_ONLY, GLOM_ENABLE_SQLITE
 
 #include "application.h"
 #include "dialog_existing_or_new.h"

Modified: trunk/glom/bakery/App_Gtk.cc
==============================================================================
--- trunk/glom/bakery/App_Gtk.cc	(original)
+++ trunk/glom/bakery/App_Gtk.cc	Wed Mar 18 11:21:15 2009
@@ -16,7 +16,7 @@
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "config.h"
+#include <config.h>
 
 #include <glom/bakery/App_Gtk.h>
 #include <gtkmm/stock.h>

Modified: trunk/glom/bakery/App_WithDoc.cc
==============================================================================
--- trunk/glom/bakery/App_WithDoc.cc	(original)
+++ trunk/glom/bakery/App_WithDoc.cc	Wed Mar 18 11:21:15 2009
@@ -16,7 +16,7 @@
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "config.h"
+#include <config.h>
 #include <glom/bakery/App_WithDoc.h>
 #include <glom/bakery/Dialog_OfferSave.h>
 #include <gconfmm.h>

Modified: trunk/glom/bakery/App_WithDoc_Gtk.cc
==============================================================================
--- trunk/glom/bakery/App_WithDoc_Gtk.cc	(original)
+++ trunk/glom/bakery/App_WithDoc_Gtk.cc	Wed Mar 18 11:21:15 2009
@@ -16,7 +16,7 @@
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "config.h"
+#include <config.h>
 
 #include <glom/bakery/App_WithDoc_Gtk.h>
 #include <glom/bakery/GtkDialogs.h>

Modified: trunk/glom/bakery/Dialog_OfferSave.cc
==============================================================================
--- trunk/glom/bakery/Dialog_OfferSave.cc	(original)
+++ trunk/glom/bakery/Dialog_OfferSave.cc	Wed Mar 18 11:21:15 2009
@@ -16,7 +16,7 @@
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "config.h"
+#include <config.h>
 #include <glom/bakery/Dialog_OfferSave.h>
 #include <glom/bakery/App_Gtk.h>
 #include <gtkmm/box.h>

Modified: trunk/glom/bakery/GtkDialogs.cc
==============================================================================
--- trunk/glom/bakery/GtkDialogs.cc	(original)
+++ trunk/glom/bakery/GtkDialogs.cc	Wed Mar 18 11:21:15 2009
@@ -16,7 +16,7 @@
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "config.h"
+#include <config.h>
 
 #ifdef BAKERY_MAEMO_ENABLED
 #include <hildon-fmmm/file-chooser-dialog.h>

Modified: trunk/glom/libglom/connectionpool_backends/postgres_self.cc
==============================================================================
--- trunk/glom/libglom/connectionpool_backends/postgres_self.cc	(original)
+++ trunk/glom/libglom/connectionpool_backends/postgres_self.cc	Wed Mar 18 11:21:15 2009
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "config.h" // For POSTGRES_UTILS_PATH
+#include <config.h> // For POSTGRES_UTILS_PATH
 
 #include <libglom/connectionpool_backends/postgres_self.h>
 #include <libglom/utils.h>

Modified: trunk/glom/libglom/data_structure/iso_codes.cc
==============================================================================
--- trunk/glom/libglom/data_structure/iso_codes.cc	(original)
+++ trunk/glom/libglom/data_structure/iso_codes.cc	Wed Mar 18 11:21:15 2009
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "config.h" //For ISO_CODES_PREFIX.
+#include <config.h> //For ISO_CODES_PREFIX.
 
 #include "iso_codes.h"
 #include <libxml++/libxml++.h>

Modified: trunk/glom/libglom/document/bakery/Document.cc
==============================================================================
--- trunk/glom/libglom/document/bakery/Document.cc	(original)
+++ trunk/glom/libglom/document/bakery/Document.cc	Wed Mar 18 11:21:15 2009
@@ -16,7 +16,7 @@
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "config.h"
+#include <config.h>
 #include <libglom/document/bakery/Document.h>
 #include <giomm.h>
 //#include <fstream>

Modified: trunk/glom/libglom/document/bakery/view/View.h
==============================================================================
--- trunk/glom/libglom/document/bakery/view/View.h	(original)
+++ trunk/glom/libglom/document/bakery/view/View.h	Wed Mar 18 11:21:15 2009
@@ -19,7 +19,7 @@
 #ifndef BAKERY_VIEW_H
 #define BAKERY_VIEW_H
 
-#include "ViewBase.h"
+#include <libglom/document/bakery/view/ViewBase.h>
 #include <libglom/document/bakery/Document.h>
 #include <sigc++/sigc++.h>
 

Modified: trunk/glom/main.cc
==============================================================================
--- trunk/glom/main.cc	(original)
+++ trunk/glom/main.cc	Wed Mar 18 11:21:15 2009
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "config.h" //For VERSION.
+#include <config.h> //For VERSION.
 
 //We use Python for calculated fields.
 #include <Python.h> //Include it before anything else to avoid "_POSIX_C_SOURCE redefined".

Modified: trunk/glom/translation/window_translations.cc
==============================================================================
--- trunk/glom/translation/window_translations.cc	(original)
+++ trunk/glom/translation/window_translations.cc	Wed Mar 18 11:21:15 2009
@@ -31,7 +31,7 @@
 
 // To read the .po files
 #include <gettext-po.h>
-#include "config.h" //For HAVE_GETTEXTPO_XERROR
+#include <config.h> //For HAVE_GETTEXTPO_XERROR
 
 #include <sstream>
 



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