From 094ddb5eedc0250d4a5bb0b016e67703351b9682 Mon Sep 17 00:00:00 2001 From: eidheim Date: Fri, 5 Jan 2018 08:36:49 +0100 Subject: [PATCH] Removed source_clang.cc from notebook.h --- src/juci.cc | 1 + src/notebook.cc | 1 + src/notebook.h | 1 - src/project.cc | 1 + src/window.cc | 1 + 5 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/juci.cc b/src/juci.cc index 95f6a8f..44b8d51 100644 --- a/src/juci.cc +++ b/src/juci.cc @@ -4,6 +4,7 @@ #include "directories.h" #include "menu.h" #include "config.h" +#include "terminal.h" int Application::on_command_line(const Glib::RefPtr &cmd) { Glib::set_prgname("juci"); diff --git a/src/notebook.cc b/src/notebook.cc index 021d853..2574fae 100644 --- a/src/notebook.cc +++ b/src/notebook.cc @@ -6,6 +6,7 @@ #include "project.h" #include "filesystem.h" #include "selection_dialog.h" +#include "source_clang.h" #include "gtksourceview-3.0/gtksourceview/gtksourcemap.h" Notebook::TabLabel::TabLabel(const boost::filesystem::path &path, std::function on_close) { diff --git a/src/notebook.h b/src/notebook.h index 70bcfa6..36e7d3e 100644 --- a/src/notebook.h +++ b/src/notebook.h @@ -2,7 +2,6 @@ #include #include "gtkmm.h" #include "source.h" -#include "source_clang.h" #include #include #include diff --git a/src/project.cc b/src/project.cc index 09c1f76..5bd50cd 100644 --- a/src/project.cc +++ b/src/project.cc @@ -11,6 +11,7 @@ #include "debug_lldb.h" #endif #include "info.h" +#include "source_clang.h" #include "usages_clang.h" boost::filesystem::path Project::debug_last_stop_file_path; diff --git a/src/window.cc b/src/window.cc index 9cd0fe2..a837c54 100644 --- a/src/window.cc +++ b/src/window.cc @@ -10,6 +10,7 @@ #include "info.h" #include "ctags.h" #include "selection_dialog.h" +#include "terminal.h" Window::Window() { set_title("juCi++");