Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/properties
diff options
context:
space:
mode:
authorWouter Bolsterlee <wbolster@svn.gnome.org>2008-08-03 18:32:42 (GMT)
committer Wouter Bolsterlee <wbolster@src.gnome.org>2008-08-03 18:32:42 (GMT)
commit75d6ca169171f642ba7438e648b4529638bf90c3 (patch)
tree61fcca3a53136be5f504577fff85efe09d40ed77 /properties
parent3e7d5f82187c7fc0d8515c1706aeab0bd0b44dfd (diff)
More #include cleanups. Again: reordering, single gtk.h includes and other
2008-08-03 Wouter Bolsterlee <wbolster@svn.gnome.org> * backend/impress/impress-document.c: * backend/impress/render.h: * libdocument/ev-document-factory.c: * libdocument/ev-document-factory.h: * libdocument/ev-document-links.h: * libdocument/ev-document-misc.c: * libdocument/ev-document-misc.h: * properties/ev-properties-main.c: * properties/ev-properties-view.c: * properties/ev-properties-view.h: * shell/eggfindbar.c: * shell/eggfindbar.h: * shell/ev-application.c: * shell/ev-application.h: * shell/ev-jobs.h: * shell/ev-message-area.h: * shell/ev-navigation-action.c: * shell/ev-navigation-action.h: * shell/ev-open-recent-action.c: * shell/ev-open-recent-action.h: * shell/ev-page-action-widget.c: * shell/ev-page-action.c: * shell/ev-page-action.h: * shell/ev-page-cache.h: * shell/ev-password-view.h: * shell/ev-password.h: * shell/ev-pixbuf-cache.h: * shell/ev-properties-fonts.c: * shell/ev-sidebar-attachments.c: * shell/ev-sidebar-links.c: * shell/ev-sidebar-links.h: * shell/ev-sidebar-thumbnails.c: * shell/ev-sidebar-thumbnails.h: * shell/ev-sidebar.c: * shell/ev-sidebar.h: * shell/ev-stock-icons.c: * shell/ev-tooltip.h: * shell/ev-view.c: * shell/ev-view.h: * shell/ev-window.c: * shell/ev-window.h: * shell/main.c: More #include cleanups. Again: reordering, single gtk.h includes and other stuff. svn path=/trunk/; revision=3095
Diffstat (limited to 'properties')
-rw-r--r--properties/ev-properties-main.c13
-rw-r--r--properties/ev-properties-view.c20
-rw-r--r--properties/ev-properties-view.h4
3 files changed, 19 insertions, 18 deletions
diff --git a/properties/ev-properties-main.c b/properties/ev-properties-main.c
index c20abed..b25df9e 100644
--- a/properties/ev-properties-main.c
+++ b/properties/ev-properties-main.c
@@ -27,17 +27,20 @@
*
*/
-#include "ev-properties-view.h"
-#include "ev-backends-manager.h"
-#include "ev-document-factory.h"
-
#include <config.h>
+
#include <string.h>
+
#include <glib/gi18n-lib.h>
-#include <gtk/gtklabel.h>
+#include <gtk/gtk.h>
+
#include <libnautilus-extension/nautilus-extension-types.h>
#include <libnautilus-extension/nautilus-property-page-provider.h>
+#include "ev-properties-view.h"
+#include "ev-backends-manager.h"
+#include "ev-document-factory.h"
+
static GType epp_type = 0;
static void property_page_provider_iface_init
(NautilusPropertyPageProviderIface *iface);
diff --git a/properties/ev-properties-view.c b/properties/ev-properties-view.c
index 4162fdd..6a1eb41 100644
--- a/properties/ev-properties-view.c
+++ b/properties/ev-properties-view.c
@@ -18,25 +18,23 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
-#ifdef HAVE_CONFIG_H
#include "config.h"
-#endif
-#include "ev-properties-view.h"
-#include "ev-document-fonts.h"
-
-#include <glib/gi18n.h>
-#include <gtk/gtk.h>
-#include <gtk/gtkversion.h>
-#include <glade/glade.h>
-#include <time.h>
-#include <sys/time.h>
#include <string.h>
+#include <sys/time.h>
+#include <time.h>
#ifdef HAVE__NL_MEASUREMENT_MEASUREMENT
#include <langinfo.h>
#endif
+#include <glib/gi18n.h>
+#include <gtk/gtk.h>
+#include <glade/glade.h>
+
+#include "ev-properties-view.h"
+#include "ev-document-fonts.h"
+
typedef enum
{
TITLE_PROPERTY,
diff --git a/properties/ev-properties-view.h b/properties/ev-properties-view.h
index a3501d1..41e6277 100644
--- a/properties/ev-properties-view.h
+++ b/properties/ev-properties-view.h
@@ -21,9 +21,9 @@
#ifndef __EV_PROPERTIES_VIEW_H__
#define __EV_PROPERTIES_VIEW_H__
-#include "ev-document-info.h"
+#include <gtk/gtk.h>
-#include <gtk/gtkwidget.h>
+#include "ev-document-info.h"
G_BEGIN_DECLS