diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-01-04 06:03:47 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-01-07 22:29:38 +0200 |
commit | dce6bb0e301a7985b302143ff4405b5526ab5dd6 (patch) | |
tree | 12b20bc13a73ee5dc34114e538ec54dadbc01ca2 /Documentation | |
parent | 3d1d2081714f316483dddf573105682910b026bc (diff) |
libcamera: bound_method: Rename Bound*Method to BoundMethod*
Most of the bound method classes are named with a BoundMethod prefix,
except for BoundMemberMethod and BoundStaticMethod. Rename them to
BoundMethodMember and BoundMethodStatic respectively to make the code
more coherent.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/Doxyfile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/Doxyfile.in b/Documentation/Doxyfile.in index 5ae8773b..8e6fbdbb 100644 --- a/Documentation/Doxyfile.in +++ b/Documentation/Doxyfile.in @@ -870,12 +870,12 @@ EXCLUDE_PATTERNS = # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories use the pattern */test/* -EXCLUDE_SYMBOLS = libcamera::BoundMemberMethod \ - libcamera::BoundMethodArgs \ +EXCLUDE_SYMBOLS = libcamera::BoundMethodArgs \ libcamera::BoundMethodBase \ + libcamera::BoundMethodMember \ libcamera::BoundMethodPack \ libcamera::BoundMethodPackBase \ - libcamera::BoundStaticMethod \ + libcamera::BoundMethodStatic \ libcamera::SignalBase \ std::* |