Jay Berkenbilt
|
12f1eb15ca
|
Programmatically apply new formatting to code
Run this:
for i in **/*.cc **/*.c **/*.h **/*.hh; do
clang-format < $i >| $i.new && mv $i.new $i
done
|
2022-04-04 08:10:40 -04:00 |
|
Jay Berkenbilt
|
2229e37e88
|
Add a blank line after the first header included in each source
|
2022-02-04 16:31:31 -05:00 |
|
Fredrik Fornwall
|
e0775238b8
|
Fix QPDFEFStreamObjectHelper::{get,set}Subtype
The /Subtype entry that specifies the mime type of an embedded file is
inside the embedded file stream dictionary directly, not it in the
parameter dictionary.
See Table 45 and 46 in the PDF 1.7 specification:
https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdfs/PDF32000_2008.pdf#page=112
|
2021-09-10 10:02:24 -04:00 |
|
Jay Berkenbilt
|
7eb903d9aa
|
Use functional replaceStreamData
|
2021-02-14 14:42:24 -05:00 |
|
Jay Berkenbilt
|
ad34b9c278
|
Implement helpers for file attachments
|
2021-02-10 06:57:37 -05:00 |
|