Browse Source

Removed source_clang.cc from notebook.h

merge-requests/365/head
eidheim 8 years ago
parent
commit
094ddb5eed
  1. 1
      src/juci.cc
  2. 1
      src/notebook.cc
  3. 1
      src/notebook.h
  4. 1
      src/project.cc
  5. 1
      src/window.cc

1
src/juci.cc

@ -4,6 +4,7 @@
#include "directories.h" #include "directories.h"
#include "menu.h" #include "menu.h"
#include "config.h" #include "config.h"
#include "terminal.h"
int Application::on_command_line(const Glib::RefPtr<Gio::ApplicationCommandLine> &cmd) { int Application::on_command_line(const Glib::RefPtr<Gio::ApplicationCommandLine> &cmd) {
Glib::set_prgname("juci"); Glib::set_prgname("juci");

1
src/notebook.cc

@ -6,6 +6,7 @@
#include "project.h" #include "project.h"
#include "filesystem.h" #include "filesystem.h"
#include "selection_dialog.h" #include "selection_dialog.h"
#include "source_clang.h"
#include "gtksourceview-3.0/gtksourceview/gtksourcemap.h" #include "gtksourceview-3.0/gtksourceview/gtksourcemap.h"
Notebook::TabLabel::TabLabel(const boost::filesystem::path &path, std::function<void()> on_close) { Notebook::TabLabel::TabLabel(const boost::filesystem::path &path, std::function<void()> on_close) {

1
src/notebook.h

@ -2,7 +2,6 @@
#include <iostream> #include <iostream>
#include "gtkmm.h" #include "gtkmm.h"
#include "source.h" #include "source.h"
#include "source_clang.h"
#include <type_traits> #include <type_traits>
#include <map> #include <map>
#include <sigc++/sigc++.h> #include <sigc++/sigc++.h>

1
src/project.cc

@ -11,6 +11,7 @@
#include "debug_lldb.h" #include "debug_lldb.h"
#endif #endif
#include "info.h" #include "info.h"
#include "source_clang.h"
#include "usages_clang.h" #include "usages_clang.h"
boost::filesystem::path Project::debug_last_stop_file_path; boost::filesystem::path Project::debug_last_stop_file_path;

1
src/window.cc

@ -10,6 +10,7 @@
#include "info.h" #include "info.h"
#include "ctags.h" #include "ctags.h"
#include "selection_dialog.h" #include "selection_dialog.h"
#include "terminal.h"
Window::Window() { Window::Window() {
set_title("juCi++"); set_title("juCi++");

Loading…
Cancel
Save