From 730d2c02332ecdbbc91efc415e079b121966669d Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Mon, 20 Apr 2009 03:05:28 +0200 Subject: [PATCH] Fix: we should include gdl headers in accordance to pkg-config The pkg-config of GDL advises to include the GDL subdir, which in turn contains a directory "gdl" with the headers. This is fine, because it makes this name switch work painless. Thus, please just #include --- src/gui/panels/panel.cpp | 2 +- src/gui/panels/panel.hpp | 2 +- src/gui/workspace/panel-manager.hpp | 2 +- src/gui/workspace/workspace-window.cpp | 10 +++++----- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/gui/panels/panel.cpp b/src/gui/panels/panel.cpp index b088e773f..4d782d619 100644 --- a/src/gui/panels/panel.cpp +++ b/src/gui/panels/panel.cpp @@ -24,7 +24,7 @@ #include "../gtk-lumiera.hpp" #include "../workspace/panel-manager.hpp" #include "../workspace/workspace-window.hpp" -#include +#include using namespace Gtk; diff --git a/src/gui/panels/panel.hpp b/src/gui/panels/panel.hpp index 6234c2a13..a46233169 100644 --- a/src/gui/panels/panel.hpp +++ b/src/gui/panels/panel.hpp @@ -28,7 +28,7 @@ #define PANEL_HPP #include "../gtk-lumiera.hpp" -#include +#include #include "../widgets/panel-bar.hpp" diff --git a/src/gui/workspace/panel-manager.hpp b/src/gui/workspace/panel-manager.hpp index 181997080..012826184 100644 --- a/src/gui/workspace/panel-manager.hpp +++ b/src/gui/workspace/panel-manager.hpp @@ -28,7 +28,7 @@ #ifndef PANEL_MANAGER_HPP #define PANEL_MANAGER_HPP -#include +#include #include #include "../panels/panel.hpp" diff --git a/src/gui/workspace/workspace-window.cpp b/src/gui/workspace/workspace-window.cpp index bd5c08980..12d6506bc 100644 --- a/src/gui/workspace/workspace-window.cpp +++ b/src/gui/workspace/workspace-window.cpp @@ -26,11 +26,11 @@ # include #endif -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #include "../gtk-lumiera.hpp" #include "workspace-window.hpp"