diff options
author | John Ankarström <john@ankarstrom.se> | 2022-07-15 18:50:15 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-07-15 18:50:15 +0200 |
commit | e2dfdd7d07f54b464a4419dcf102662f1694d4b8 (patch) | |
tree | 7c8ef515847be96cdb12ddc21b8a3104fcce9428 /c/datalistview.cpp | |
parent | 450770c00ae724fa8a3dc05fc86bf414cfa34e2f (diff) | |
download | EpisodeBrowser-e2dfdd7d07f54b464a4419dcf102662f1694d4b8.tar.gz |
Split defs.h into separate header files.
This is feasible now that the makedeps script exists to automatically
manage build dependencies (see 6034fe2, d00f8b3).
Diffstat (limited to 'c/datalistview.cpp')
-rw-r--r-- | c/datalistview.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/c/datalistview.cpp b/c/datalistview.cpp index 9c13ae8..b730993 100644 --- a/c/datalistview.cpp +++ b/c/datalistview.cpp @@ -4,7 +4,11 @@ #include <SWI-Prolog.h> #include "resource.h" -#include "defs.h" +#include "common.h" +#include "datalistview.h" +#include "episodelistview.h" +#include "listview.h" +#include "main.h" extern EpisodeListView *g_lpElv; |