diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-06-17 13:03:12 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-06-17 13:03:12 (GMT) |
commit | 2cb3d9035ef9859570bf8facb1a2cc935743b0b6 (patch) | |
tree | 6ad51a7343ac133f6937228e91ca3401f9571324 /src/gui | |
parent | d152af2b8883fb101cfbdc607601cb963f40db4a (diff) |
Got access to external files thanks to new core functions.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/dialogs/about.c | 2 | ||||
-rw-r--r-- | src/gui/dialogs/gotox.c | 2 | ||||
-rw-r--r-- | src/gui/panels/bookmarks.c | 2 | ||||
-rw-r--r-- | src/gui/panels/errors.c | 2 | ||||
-rw-r--r-- | src/gui/panels/symbols.c | 2 | ||||
-rw-r--r-- | src/gui/panels/welcome.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/dialogs/about.c b/src/gui/dialogs/about.c index 7e62269..0acba30 100644 --- a/src/gui/dialogs/about.c +++ b/src/gui/dialogs/about.c @@ -33,8 +33,8 @@ #include <i18n.h> +#include "../../core/paths.h" #include "../../gtkext/easygtk.h" -#include "../../gtkext/support.h" diff --git a/src/gui/dialogs/gotox.c b/src/gui/dialogs/gotox.c index 7ae1244..d9a9979 100644 --- a/src/gui/dialogs/gotox.c +++ b/src/gui/dialogs/gotox.c @@ -31,10 +31,10 @@ #include <i18n.h> +#include "../../core/paths.h" #include "../../format/format.h" #include "../../format/symiter.h" #include "../../gtkext/easygtk.h" -#include "../../gtkext/support.h" diff --git a/src/gui/panels/bookmarks.c b/src/gui/panels/bookmarks.c index 104e519..fd8af25 100644 --- a/src/gui/panels/bookmarks.c +++ b/src/gui/panels/bookmarks.c @@ -41,12 +41,12 @@ #include "../../common/cpp.h" #include "../../common/extstr.h" #include "../../core/params.h" +#include "../../core/paths.h" #include "../../core/queue.h" #include "../../glibext/chrysamarshal.h" #include "../../glibext/signal.h" #include "../../gtkext/easygtk.h" #include "../../gtkext/gtkdockable-int.h" -#include "../../gtkext/support.h" diff --git a/src/gui/panels/errors.c b/src/gui/panels/errors.c index 161d1ab..5873ad5 100644 --- a/src/gui/panels/errors.c +++ b/src/gui/panels/errors.c @@ -37,10 +37,10 @@ #include "updating-int.h" #include "../core/global.h" #include "../../core/global.h" +#include "../../core/paths.h" #include "../../core/queue.h" #include "../../format/format.h" #include "../../glibext/signal.h" -#include "../../gtkext/support.h" diff --git a/src/gui/panels/symbols.c b/src/gui/panels/symbols.c index fab82a9..94605b3 100644 --- a/src/gui/panels/symbols.c +++ b/src/gui/panels/symbols.c @@ -40,11 +40,11 @@ #include "updating-int.h" #include "../core/global.h" #include "../../common/extstr.h" +#include "../../core/paths.h" #include "../../core/queue.h" #include "../../format/format.h" #include "../../format/symiter.h" #include "../../gtkext/easygtk.h" -#include "../../gtkext/support.h" #include "../../gtkext/tmgt.h" diff --git a/src/gui/panels/welcome.c b/src/gui/panels/welcome.c index eeff152..fc4b314 100644 --- a/src/gui/panels/welcome.c +++ b/src/gui/panels/welcome.c @@ -44,7 +44,7 @@ #include "../../common/shuffle.h" #include "../../core/global.h" #include "../../core/params.h" -#include "../../gtkext/support.h" +#include "../../core/paths.h" |