[glom/glom-1-12] libglom: Correct includes.



commit 6522d9ce8ea02fc49e83bce5b41b606b2967de3e
Author: Murray Cumming <murrayc murrayc com>
Date:   Tue Jan 26 10:01:55 2010 +0100

    libglom: Correct includes.
    
    * glom/libglom/*.h: Use the full include libglom/ path for headers, to
    avoid confusion and make life easier for other users of libglom.
    * glom/libglom/*.cc: Fixed them here just for consistency.

 ChangeLog                                          |    7 +++++++
 glom/libglom/appstate.cc                           |    2 +-
 glom/libglom/calcinprogress.cc                     |    2 +-
 glom/libglom/data_structure/field.cc               |    4 ++--
 glom/libglom/data_structure/field.h                |    4 ++--
 glom/libglom/data_structure/fieldtypes.cc          |    2 +-
 glom/libglom/data_structure/glomconversions.cc     |    2 +-
 glom/libglom/data_structure/groupinfo.cc           |    2 +-
 glom/libglom/data_structure/groupinfo.h            |    4 ++--
 glom/libglom/data_structure/has_title_singular.cc  |    2 +-
 glom/libglom/data_structure/layout/custom_title.cc |    2 +-
 .../data_structure/layout/fieldformatting.cc       |    2 +-
 glom/libglom/data_structure/layout/layoutgroup.cc  |    6 +++---
 glom/libglom/data_structure/layout/layoutgroup.h   |    2 +-
 glom/libglom/data_structure/layout/layoutitem.cc   |    2 +-
 .../data_structure/layout/layoutitem_button.cc     |    2 +-
 .../data_structure/layout/layoutitem_button.h      |    2 +-
 .../layout/layoutitem_calendarportal.cc            |    2 +-
 .../layout/layoutitem_calendarportal.h             |    2 +-
 .../data_structure/layout/layoutitem_field.cc      |    2 +-
 .../data_structure/layout/layoutitem_image.cc      |    2 +-
 .../data_structure/layout/layoutitem_image.h       |    2 +-
 .../data_structure/layout/layoutitem_line.cc       |    2 +-
 .../data_structure/layout/layoutitem_line.h        |    2 +-
 .../data_structure/layout/layoutitem_notebook.cc   |    2 +-
 .../data_structure/layout/layoutitem_notebook.h    |    2 +-
 .../layout/layoutitem_placeholder.cc               |    2 +-
 .../data_structure/layout/layoutitem_placeholder.h |    2 +-
 .../data_structure/layout/layoutitem_portal.cc     |    2 +-
 .../data_structure/layout/layoutitem_text.cc       |    2 +-
 .../data_structure/layout/layoutitem_text.h        |    4 ++--
 .../layout/report_parts/layoutitem_footer.cc       |    2 +-
 .../layout/report_parts/layoutitem_header.cc       |    2 +-
 .../report_parts/layoutitem_verticalgroup.cc       |    2 +-
 .../data_structure/layout/usesrelationship.cc      |    2 +-
 glom/libglom/data_structure/numeric_format.cc      |    2 +-
 .../data_structure/parameternamegenerator.cc       |    2 +-
 glom/libglom/data_structure/print_layout.cc        |    2 +-
 glom/libglom/data_structure/print_layout.h         |    4 ++--
 glom/libglom/data_structure/privileges.cc          |    2 +-
 glom/libglom/data_structure/relationship.cc        |    2 +-
 glom/libglom/data_structure/report.cc              |    2 +-
 glom/libglom/data_structure/report.h               |    4 ++--
 glom/libglom/data_structure/system_prefs.cc        |    1 -
 glom/libglom/data_structure/tableinfo.cc           |    2 +-
 glom/libglom/data_structure/translatable_item.cc   |    2 +-
 glom/libglom/python_embed/py_glom_record.cc        |    2 +-
 glom/libglom/python_embed/py_glom_relatedrecord.cc |    2 +-
 48 files changed, 61 insertions(+), 55 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index f46f515..94482e5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-01-26  Murray Cumming  <murrayc murrayc com>
+
+	libglom: Correct includes.
+
+	* glom/libglom/*.h: Use the full include libglom/ path for headers, to 
+	avoid confusion and make life easier for other users of libglom.
+
 2010-01-24  Michael Hasselmann  <michael taschenorakel de>
 
 	Fixed out-ouf-bounds access during CSV imports
diff --git a/glom/libglom/appstate.cc b/glom/libglom/appstate.cc
index d3ffa52..0ef83f8 100644
--- a/glom/libglom/appstate.cc
+++ b/glom/libglom/appstate.cc
@@ -19,7 +19,7 @@
  */
 
 #include <libglom/libglom_config.h>
-#include "appstate.h"
+#include <libglom/appstate.h>
 
 
 namespace Glom
diff --git a/glom/libglom/calcinprogress.cc b/glom/libglom/calcinprogress.cc
index 6e6dfb9..2a844f6 100644
--- a/glom/libglom/calcinprogress.cc
+++ b/glom/libglom/calcinprogress.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "calcinprogress.h"
+#include <libglom/calcinprogress.h>
 
 namespace Glom
 {
diff --git a/glom/libglom/data_structure/field.cc b/glom/libglom/data_structure/field.cc
index 4c61331..2d895e1 100644
--- a/glom/libglom/data_structure/field.cc
+++ b/glom/libglom/data_structure/field.cc
@@ -18,9 +18,9 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "field.h"
+#include <libglom/data_structure/field.h>
 #include <libglom/connectionpool.h>
-#include "glomconversions.h"
+#include <libglom/data_structure/glomconversions.h>
 #include <libglom/utils.h>
 #include <glibmm/i18n.h>
 
diff --git a/glom/libglom/data_structure/field.h b/glom/libglom/data_structure/field.h
index d370397..bcda5c8 100644
--- a/glom/libglom/data_structure/field.h
+++ b/glom/libglom/data_structure/field.h
@@ -22,8 +22,8 @@
 #define GLOM_DATASTRUCTURE_FIELD_H
 
 #include <libgdamm.h>
-#include "translatable_item.h"
-#include "layout/fieldformatting.h"
+#include <libglom/data_structure/translatable_item.h>
+#include <libglom/data_structure/layout/fieldformatting.h>
 #include <libglom/sharedptr.h>
 
 //Predicate, for use with std::find_if():
diff --git a/glom/libglom/data_structure/fieldtypes.cc b/glom/libglom/data_structure/fieldtypes.cc
index ff25742..7af937f 100644
--- a/glom/libglom/data_structure/fieldtypes.cc
+++ b/glom/libglom/data_structure/fieldtypes.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "fieldtypes.h"
+#include <libglom/data_structure/fieldtypes.h>
 #include <iostream> //For debug output
 #include <libgda/gda-util.h> // For gda_g_type_to_string
 #include <libglom/connectionpool.h>
diff --git a/glom/libglom/data_structure/glomconversions.cc b/glom/libglom/data_structure/glomconversions.cc
index 054b20e..fae7010 100644
--- a/glom/libglom/data_structure/glomconversions.cc
+++ b/glom/libglom/data_structure/glomconversions.cc
@@ -21,7 +21,7 @@
 
 #include <libglom/libglom_config.h> // For HAVE_STRPTIME
 
-#include "glomconversions.h"
+#include <libglom/data_structure/glomconversions.h>
 #include <libglom/connectionpool.h>
 #include <libglom/utils.h>
 
diff --git a/glom/libglom/data_structure/groupinfo.cc b/glom/libglom/data_structure/groupinfo.cc
index d7de5ec..0035367 100644
--- a/glom/libglom/data_structure/groupinfo.cc
+++ b/glom/libglom/data_structure/groupinfo.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "groupinfo.h"
+#include <libglom/data_structure/groupinfo.h>
 
 namespace Glom
 {
diff --git a/glom/libglom/data_structure/groupinfo.h b/glom/libglom/data_structure/groupinfo.h
index fc796fb..b73b504 100644
--- a/glom/libglom/data_structure/groupinfo.h
+++ b/glom/libglom/data_structure/groupinfo.h
@@ -21,8 +21,8 @@
 #ifndef GLOM_DATA_STRUCTURE_GROUPINFO_H
 #define GLOM_DATA_STRUCTURE_GROUPINFO_H
 
-#include "translatable_item.h"
-#include "privileges.h"
+#include <libglom/data_structure/translatable_item.h>
+#include <libglom/data_structure/privileges.h>
 #include <map>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/has_title_singular.cc b/glom/libglom/data_structure/has_title_singular.cc
index 40673df..e09fd13 100644
--- a/glom/libglom/data_structure/has_title_singular.cc
+++ b/glom/libglom/data_structure/has_title_singular.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "has_title_singular.h"
+#include <libglom/data_structure/has_title_singular.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/custom_title.cc b/glom/libglom/data_structure/layout/custom_title.cc
index 3ca5906..f5c12ff 100644
--- a/glom/libglom/data_structure/layout/custom_title.cc
+++ b/glom/libglom/data_structure/layout/custom_title.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
  
-#include "custom_title.h"
+#include <libglom/data_structure/layout/custom_title.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/fieldformatting.cc b/glom/libglom/data_structure/layout/fieldformatting.cc
index ae82cf7..bd47f7d 100644
--- a/glom/libglom/data_structure/layout/fieldformatting.cc
+++ b/glom/libglom/data_structure/layout/fieldformatting.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "fieldformatting.h"
+#include <libglom/data_structure/layout/fieldformatting.h>
 #include <glibmm/i18n.h>
 
 const guint MULTILINE_TEXT_DEFAULT_HEIGHT_LINES = 6;
diff --git a/glom/libglom/data_structure/layout/layoutgroup.cc b/glom/libglom/data_structure/layout/layoutgroup.cc
index 0ac3d26..9e37b24 100644
--- a/glom/libglom/data_structure/layout/layoutgroup.cc
+++ b/glom/libglom/data_structure/layout/layoutgroup.cc
@@ -18,9 +18,9 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "layoutgroup.h"
-#include "layoutitem_field.h"
-#include "layoutitem_portal.h"
+#include <libglom/data_structure/layout/layoutgroup.h>
+#include <libglom/data_structure/layout/layoutitem_field.h>
+#include <libglom/data_structure/layout/layoutitem_portal.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/layoutgroup.h b/glom/libglom/data_structure/layout/layoutgroup.h
index 7baf9cd..d44fe6f 100644
--- a/glom/libglom/data_structure/layout/layoutgroup.h
+++ b/glom/libglom/data_structure/layout/layoutgroup.h
@@ -21,7 +21,7 @@
 #ifndef GLOM_DATASTRUCTURE_LAYOUTGROUP_H
 #define GLOM_DATASTRUCTURE_LAYOUTGROUP_H
 
-#include "layoutitem_field.h"
+#include <libglom/data_structure/layout/layoutitem_field.h>
 #include <list>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/layoutitem.cc b/glom/libglom/data_structure/layout/layoutitem.cc
index 5614b6b..95e1b0b 100644
--- a/glom/libglom/data_structure/layout/layoutitem.cc
+++ b/glom/libglom/data_structure/layout/layoutitem.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "layoutitem.h"
+#include <libglom/data_structure/layout/layoutitem.h>
 
 namespace Glom
 {
diff --git a/glom/libglom/data_structure/layout/layoutitem_button.cc b/glom/libglom/data_structure/layout/layoutitem_button.cc
index 4b31d9b..16023f1 100644
--- a/glom/libglom/data_structure/layout/layoutitem_button.cc
+++ b/glom/libglom/data_structure/layout/layoutitem_button.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "layoutitem_button.h"
+#include <libglom/data_structure/layout/layoutitem_button.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/layoutitem_button.h b/glom/libglom/data_structure/layout/layoutitem_button.h
index 81227b3..a705165 100644
--- a/glom/libglom/data_structure/layout/layoutitem_button.h
+++ b/glom/libglom/data_structure/layout/layoutitem_button.h
@@ -21,7 +21,7 @@
 #ifndef GLOM_DATASTRUCTURE_LAYOUTITEM_BUTTON_H
 #define GLOM_DATASTRUCTURE_LAYOUTITEM_BUTTON_H
 
-#include "layoutitem.h"
+#include <libglom/data_structure/layout/layoutitem.h>
 
 namespace Glom
 {
diff --git a/glom/libglom/data_structure/layout/layoutitem_calendarportal.cc b/glom/libglom/data_structure/layout/layoutitem_calendarportal.cc
index cb5a78d..f23b6bf 100644
--- a/glom/libglom/data_structure/layout/layoutitem_calendarportal.cc
+++ b/glom/libglom/data_structure/layout/layoutitem_calendarportal.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "layoutitem_calendarportal.h"
+#include <libglom/data_structure/layout/layoutitem_calendarportal.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/layoutitem_calendarportal.h b/glom/libglom/data_structure/layout/layoutitem_calendarportal.h
index 4ce8201..d713657 100644
--- a/glom/libglom/data_structure/layout/layoutitem_calendarportal.h
+++ b/glom/libglom/data_structure/layout/layoutitem_calendarportal.h
@@ -21,7 +21,7 @@
 #ifndef GLOM_DATASTRUCTURE_LAYOUTITEM_CALENDAR_PORTAL_H
 #define GLOM_DATASTRUCTURE_LAYOUTITEM_CALENDAR_PORTAL_H
 
-#include "layoutitem_portal.h"
+#include <libglom/data_structure/layout/layoutitem_portal.h>
 
 namespace Glom
 {
diff --git a/glom/libglom/data_structure/layout/layoutitem_field.cc b/glom/libglom/data_structure/layout/layoutitem_field.cc
index 4666cb6..097e2be 100644
--- a/glom/libglom/data_structure/layout/layoutitem_field.cc
+++ b/glom/libglom/data_structure/layout/layoutitem_field.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "layoutitem_field.h"
+#include <libglom/data_structure/layout/layoutitem_field.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/layoutitem_image.cc b/glom/libglom/data_structure/layout/layoutitem_image.cc
index 741746c..71d55ed 100644
--- a/glom/libglom/data_structure/layout/layoutitem_image.cc
+++ b/glom/libglom/data_structure/layout/layoutitem_image.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "layoutitem_image.h"
+#include <libglom/data_structure/layout/layoutitem_image.h>
 #include <libglom/utils.h>
 #include <libglom/data_structure/glomconversions.h>
 #include <glibmm/i18n.h>
diff --git a/glom/libglom/data_structure/layout/layoutitem_image.h b/glom/libglom/data_structure/layout/layoutitem_image.h
index 0aa97a7..6f8cafe 100644
--- a/glom/libglom/data_structure/layout/layoutitem_image.h
+++ b/glom/libglom/data_structure/layout/layoutitem_image.h
@@ -21,7 +21,7 @@
 #ifndef GLOM_DATASTRUCTURE_LAYOUTITEM_IMAGE_H
 #define GLOM_DATASTRUCTURE_LAYOUTITEM_IMAGE_H
 
-#include "layoutitem.h"
+#include <libglom/data_structure/layout/layoutitem.h>
 #include <libgdamm/value.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/layoutitem_line.cc b/glom/libglom/data_structure/layout/layoutitem_line.cc
index 16af764..7e62090 100644
--- a/glom/libglom/data_structure/layout/layoutitem_line.cc
+++ b/glom/libglom/data_structure/layout/layoutitem_line.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "layoutitem_line.h"
+#include <libglom/data_structure/layout/layoutitem_line.h>
 #include <libglom/utils.h>
 #include <glibmm/i18n.h>
 
diff --git a/glom/libglom/data_structure/layout/layoutitem_line.h b/glom/libglom/data_structure/layout/layoutitem_line.h
index a9fa518..2f4005b 100644
--- a/glom/libglom/data_structure/layout/layoutitem_line.h
+++ b/glom/libglom/data_structure/layout/layoutitem_line.h
@@ -21,7 +21,7 @@
 #ifndef GLOM_DATASTRUCTURE_LAYOUTITEM_LINE_H
 #define GLOM_DATASTRUCTURE_LAYOUTITEM_LINE_H
 
-#include "layoutitem.h"
+#include <libglom/data_structure/layout/layoutitem.h>
 #include <libgdamm/value.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/layoutitem_notebook.cc b/glom/libglom/data_structure/layout/layoutitem_notebook.cc
index 37cd2c6..b52486d 100644
--- a/glom/libglom/data_structure/layout/layoutitem_notebook.cc
+++ b/glom/libglom/data_structure/layout/layoutitem_notebook.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "layoutitem_notebook.h"
+#include <libglom/data_structure/layout/layoutitem_notebook.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/layoutitem_notebook.h b/glom/libglom/data_structure/layout/layoutitem_notebook.h
index 231f59c..8113a83 100644
--- a/glom/libglom/data_structure/layout/layoutitem_notebook.h
+++ b/glom/libglom/data_structure/layout/layoutitem_notebook.h
@@ -21,7 +21,7 @@
 #ifndef GLOM_DATASTRUCTURE_LAYOUTITEM_NOTEBOOK_H
 #define GLOM_DATASTRUCTURE_LAYOUTITEM_NOTEBOOK_H
 
-#include "layoutgroup.h"
+#include <libglom/data_structure/layout/layoutgroup.h>
 #include <libglom/data_structure/field.h>
 #include <libglom/data_structure/relationship.h>
 
diff --git a/glom/libglom/data_structure/layout/layoutitem_placeholder.cc b/glom/libglom/data_structure/layout/layoutitem_placeholder.cc
index ded9103..55b0855 100644
--- a/glom/libglom/data_structure/layout/layoutitem_placeholder.cc
+++ b/glom/libglom/data_structure/layout/layoutitem_placeholder.cc
@@ -22,7 +22,7 @@
  * 	Boston, MA  02110-1301, USA.
  */
 
-#include "layoutitem_placeholder.h"
+#include <libglom/data_structure/layout/layoutitem_placeholder.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/layoutitem_placeholder.h b/glom/libglom/data_structure/layout/layoutitem_placeholder.h
index 24231b3..42ec798 100644
--- a/glom/libglom/data_structure/layout/layoutitem_placeholder.h
+++ b/glom/libglom/data_structure/layout/layoutitem_placeholder.h
@@ -25,7 +25,7 @@
 #ifndef _LAYOUTITEM_PLACEHOLDER_H_
 #define _LAYOUTITEM_PLACEHOLDER_H_
 
-#include "layoutitem.h"
+#include <libglom/data_structure/layout/layoutitem.h>
 
 namespace Glom
 {
diff --git a/glom/libglom/data_structure/layout/layoutitem_portal.cc b/glom/libglom/data_structure/layout/layoutitem_portal.cc
index c5ed4f5..e33b1cc 100644
--- a/glom/libglom/data_structure/layout/layoutitem_portal.cc
+++ b/glom/libglom/data_structure/layout/layoutitem_portal.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "layoutitem_portal.h"
+#include <libglom/data_structure/layout/layoutitem_portal.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/layoutitem_text.cc b/glom/libglom/data_structure/layout/layoutitem_text.cc
index 452636c..d498f0b 100644
--- a/glom/libglom/data_structure/layout/layoutitem_text.cc
+++ b/glom/libglom/data_structure/layout/layoutitem_text.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "layoutitem_text.h"
+#include <libglom/data_structure/layout/layoutitem_text.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/layoutitem_text.h b/glom/libglom/data_structure/layout/layoutitem_text.h
index 926aaf9..f739050 100644
--- a/glom/libglom/data_structure/layout/layoutitem_text.h
+++ b/glom/libglom/data_structure/layout/layoutitem_text.h
@@ -21,8 +21,8 @@
 #ifndef GLOM_DATASTRUCTURE_LAYOUTITEM_TEXT_H
 #define GLOM_DATASTRUCTURE_LAYOUTITEM_TEXT_H
 
-#include "layoutitem.h"
-#include "fieldformatting.h"
+#include <libglom/data_structure/layout/layoutitem.h>
+#include <libglom/data_structure/layout/fieldformatting.h>
 
 namespace Glom
 {
diff --git a/glom/libglom/data_structure/layout/report_parts/layoutitem_footer.cc b/glom/libglom/data_structure/layout/report_parts/layoutitem_footer.cc
index e9f0e9b..05375e1 100644
--- a/glom/libglom/data_structure/layout/report_parts/layoutitem_footer.cc
+++ b/glom/libglom/data_structure/layout/report_parts/layoutitem_footer.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
  
-#include "layoutitem_footer.h"
+#include <libglom/data_structure/layout/report_parts/layoutitem_footer.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/report_parts/layoutitem_header.cc b/glom/libglom/data_structure/layout/report_parts/layoutitem_header.cc
index 910c06d..edc1005 100644
--- a/glom/libglom/data_structure/layout/report_parts/layoutitem_header.cc
+++ b/glom/libglom/data_structure/layout/report_parts/layoutitem_header.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
  
-#include "layoutitem_header.h"
+#include <libglom/data_structure/layout/report_parts/layoutitem_header.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/report_parts/layoutitem_verticalgroup.cc b/glom/libglom/data_structure/layout/report_parts/layoutitem_verticalgroup.cc
index cf943d0..3a76af4 100644
--- a/glom/libglom/data_structure/layout/report_parts/layoutitem_verticalgroup.cc
+++ b/glom/libglom/data_structure/layout/report_parts/layoutitem_verticalgroup.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
  
-#include "layoutitem_verticalgroup.h"
+#include <libglom/data_structure/layout/report_parts/layoutitem_verticalgroup.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/layout/usesrelationship.cc b/glom/libglom/data_structure/layout/usesrelationship.cc
index 069079a..bff8037 100644
--- a/glom/libglom/data_structure/layout/usesrelationship.cc
+++ b/glom/libglom/data_structure/layout/usesrelationship.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "fieldformatting.h"
+#include <libglom/data_structure/layout/fieldformatting.h>
 #include <glibmm/i18n.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/numeric_format.cc b/glom/libglom/data_structure/numeric_format.cc
index 09f246f..f5ac0cc 100644
--- a/glom/libglom/data_structure/numeric_format.cc
+++ b/glom/libglom/data_structure/numeric_format.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "numeric_format.h"
+#include <libglom/data_structure/numeric_format.h>
 
 namespace Glom
 {
diff --git a/glom/libglom/data_structure/parameternamegenerator.cc b/glom/libglom/data_structure/parameternamegenerator.cc
index bd04af2..5d6846c 100644
--- a/glom/libglom/data_structure/parameternamegenerator.cc
+++ b/glom/libglom/data_structure/parameternamegenerator.cc
@@ -16,7 +16,7 @@
  * with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#include "parameternamegenerator.h"
+#include <libglom/data_structure/parameternamegenerator.h>
 
 namespace Glom
 {
diff --git a/glom/libglom/data_structure/print_layout.cc b/glom/libglom/data_structure/print_layout.cc
index 51cf459..aa4b936 100644
--- a/glom/libglom/data_structure/print_layout.cc
+++ b/glom/libglom/data_structure/print_layout.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "print_layout.h"
+#include <libglom/data_structure/print_layout.h>
 #include <gtk/gtkpagesetup.h> //For gtk_page_setup_copy().
 
 namespace Glom
diff --git a/glom/libglom/data_structure/print_layout.h b/glom/libglom/data_structure/print_layout.h
index c8e58ba..bf3590c 100644
--- a/glom/libglom/data_structure/print_layout.h
+++ b/glom/libglom/data_structure/print_layout.h
@@ -21,8 +21,8 @@
 #ifndef GLOM_DATASTRUCTURE_PRINT_LAYOUT_H
 #define GLOM_DATASTRUCTURE_PRINT_LAYOUT_H
 
-#include "translatable_item.h"
-#include "layout/report_parts/layoutitem_groupby.h"
+#include <libglom/data_structure/translatable_item.h>
+#include <libglom/data_structure/layout/report_parts/layoutitem_groupby.h>
 #include <glibmm/ustring.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/privileges.cc b/glom/libglom/data_structure/privileges.cc
index 581e60a..f1f503f 100644
--- a/glom/libglom/data_structure/privileges.cc
+++ b/glom/libglom/data_structure/privileges.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "privileges.h"
+#include <libglom/data_structure/privileges.h>
 
 namespace Glom
 {
diff --git a/glom/libglom/data_structure/relationship.cc b/glom/libglom/data_structure/relationship.cc
index ebb73f8..3f422f0 100644
--- a/glom/libglom/data_structure/relationship.cc
+++ b/glom/libglom/data_structure/relationship.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "relationship.h"
+#include <libglom/data_structure/relationship.h>
 
 namespace Glom
 {
diff --git a/glom/libglom/data_structure/report.cc b/glom/libglom/data_structure/report.cc
index 93a2e71..1e0ca71 100644
--- a/glom/libglom/data_structure/report.cc
+++ b/glom/libglom/data_structure/report.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "report.h"
+#include <libglom/data_structure/report.h>
 
 namespace Glom
 {
diff --git a/glom/libglom/data_structure/report.h b/glom/libglom/data_structure/report.h
index 473d1e4..376611a 100644
--- a/glom/libglom/data_structure/report.h
+++ b/glom/libglom/data_structure/report.h
@@ -21,8 +21,8 @@
 #ifndef GLOM_DATASTRUCTURE_REPORT_H
 #define GLOM_DATASTRUCTURE_REPORT_H
 
-#include "translatable_item.h"
-#include "layout/report_parts/layoutitem_groupby.h"
+#include <libglom/data_structure/translatable_item.h>
+#include <libglom/data_structure/layout/report_parts/layoutitem_groupby.h>
 #include <glibmm/ustring.h>
 
 namespace Glom
diff --git a/glom/libglom/data_structure/system_prefs.cc b/glom/libglom/data_structure/system_prefs.cc
index d2343d3..71a75d2 100644
--- a/glom/libglom/data_structure/system_prefs.cc
+++ b/glom/libglom/data_structure/system_prefs.cc
@@ -18,4 +18,3 @@
  * Boston, MA 02111-1307, USA.
  */
  
-#include "system_prefs.h"
diff --git a/glom/libglom/data_structure/tableinfo.cc b/glom/libglom/data_structure/tableinfo.cc
index 79340e5..3abe43b 100644
--- a/glom/libglom/data_structure/tableinfo.cc
+++ b/glom/libglom/data_structure/tableinfo.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "tableinfo.h"
+#include <libglom/data_structure/tableinfo.h>
 
 namespace Glom
 {
diff --git a/glom/libglom/data_structure/translatable_item.cc b/glom/libglom/data_structure/translatable_item.cc
index 7fe1bf9..2f8d133 100644
--- a/glom/libglom/data_structure/translatable_item.cc
+++ b/glom/libglom/data_structure/translatable_item.cc
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "translatable_item.h"
+#include <libglom/data_structure/translatable_item.h>
 #include <libglom/utils.h>
 #include <glibmm/i18n.h>
 #include <iostream>
diff --git a/glom/libglom/python_embed/py_glom_record.cc b/glom/libglom/python_embed/py_glom_record.cc
index 112d524..659054d 100644
--- a/glom/libglom/python_embed/py_glom_record.cc
+++ b/glom/libglom/python_embed/py_glom_record.cc
@@ -26,7 +26,7 @@
 
 #include <libglom/python_embed/py_glom_record.h>
 #include <libglom/python_embed/py_glom_related.h>
-#include "pygdavalue_conversions.h" //For pygda_value_as_pyobject().
+#include <libglom/python_embed/pygdavalue_conversions.h> //For pygda_value_as_pyobject().
 
 #include <libglom/data_structure/field.h>
 #include <glibmm/ustring.h>
diff --git a/glom/libglom/python_embed/py_glom_relatedrecord.cc b/glom/libglom/python_embed/py_glom_relatedrecord.cc
index 827cd05..d8edc81 100644
--- a/glom/libglom/python_embed/py_glom_relatedrecord.cc
+++ b/glom/libglom/python_embed/py_glom_relatedrecord.cc
@@ -26,7 +26,7 @@
 
 #include <libglom/python_embed/py_glom_relatedrecord.h>
 #include <libglom/python_embed/py_glom_record.h>
-#include "pygdavalue_conversions.h" //For pygda_value_as_pyobject().
+#include <libglom/python_embed/pygdavalue_conversions.h> //For pygda_value_as_pyobject().
 #include <libglom/connectionpool.h>
 
 #include <libglom/data_structure/field.h>



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