diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3868f55..074255f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -5,7 +5,7 @@ set(JUCI_SHARED_FILES compile_commands.cc ctags.cc dispatcher.cc - documentation_cppreference.cc + documentation.cc filesystem.cc git.cc grep.cc diff --git a/src/documentation_cppreference.cc b/src/documentation.cc similarity index 99% rename from src/documentation_cppreference.cc rename to src/documentation.cc index 5873ad4..f5a2023 100644 --- a/src/documentation_cppreference.cc +++ b/src/documentation.cc @@ -1,4 +1,4 @@ -#include "documentation_cppreference.h" +#include "documentation.h" #include std::string Documentation::CppReference::get_url(const std::string &symbol) noexcept { diff --git a/src/documentation_cppreference.h b/src/documentation.h similarity index 100% rename from src/documentation_cppreference.h rename to src/documentation.h diff --git a/src/source_clang.cc b/src/source_clang.cc index 0c04c54..126a945 100644 --- a/src/source_clang.cc +++ b/src/source_clang.cc @@ -8,7 +8,7 @@ #include "compile_commands.h" #include "ctags.h" #include "dialogs.h" -#include "documentation_cppreference.h" +#include "documentation.h" #include "filesystem.h" #include "info.h" #include "selection_dialog.h"