Skip to content

Commit ac5e12a

Browse files
committed
Fix empty articles for shell docs
I'm not sure I'm doing here everything right, so it's just my assumption: The header I migrate from libview_private_headers to libview_headers are used in the documentation. Also they do not have this inside: ``` ``` like other private header do (libview/ev-link-accessible.h) for example. So if I'm wrong and the headers I move are really private then: - they should have this "error "This is a private header." listed above as well - they should be removed from xml to generate doc for shell
1 parent 8c8d422 commit ac5e12a

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

help/reference/shell/meson.build

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ gnome.gtkdoc(
2020
join_paths(meson.source_root(), 'shell'),
2121
join_paths(meson.source_root(), 'libmisc'),
2222
],
23-
ignore_headers: [libview_private_headers],
2423
dependencies: xreader_doc_deps,
2524
mkdb_args: ['--xml-mode', '--output-format=xml', '--name-space=ev'],
2625
c_args: '-DXREADER_COMPILATION',

libview/meson.build

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
libview_private_headers = [
2-
'ev-annotation-window.h',
32
'ev-link-accessible.h',
4-
'ev-loading-window.h',
5-
'ev-page-cache.h',
6-
'ev-pixbuf-cache.h',
73
'ev-timeline.h',
84
'ev-transition-animation.h',
95
'ev-view-accessible.h',
10-
'ev-view-cursor.h',
116
'ev-view-private.h',
127
]
138

149
libview_headers = [
10+
'ev-annotation-window.h',
1511
'ev-document-model.h',
1612
'ev-jobs.h',
1713
'ev-job-scheduler.h',
14+
'ev-loading-window.h',
15+
'ev-page-cache.h',
16+
'ev-pixbuf-cache.h',
1817
'ev-print-operation.h',
1918
'ev-stock-icons.h',
2019
'ev-view.h',
20+
'ev-view-cursor.h',
2121
'ev-web-view.h',
2222
'ev-view-presentation.h',
2323
]

0 commit comments

Comments
 (0)