diff options
author | Mattias Andrée <maandree@kth.se> | 2024-07-17 21:07:37 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-07-17 21:07:37 +0200 |
commit | 57398cc26d66ec78cc65d4e9b23d0519406ff4e8 (patch) | |
tree | ece7d8b9b2a2837ec7a9d675b7e14641689e35fc /libgamma-error.hh | |
parent | Empty signed commit (diff) | |
download | libgammamm-57398cc26d66ec78cc65d4e9b23d0519406ff4e8.tar.gz libgammamm-57398cc26d66ec78cc65d4e9b23d0519406ff4e8.tar.bz2 libgammamm-57398cc26d66ec78cc65d4e9b23d0519406ff4e8.tar.xz |
Update for libgamma 0.7.41.0.3
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | libgamma-error.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libgamma-error.hh b/libgamma-error.hh index ec252c7..63189ee 100644 --- a/libgamma-error.hh +++ b/libgamma-error.hh @@ -82,13 +82,13 @@ namespace libgamma const GroupGid & operator =(const libgamma_gid_t &value) const { - libgamma_group_gid = value; + libgamma_group_gid_set(value); return *this; } operator libgamma_gid_t() const { - return libgamma_group_gid; + return libgamma_group_gid_get(); } }; @@ -108,13 +108,13 @@ namespace libgamma const GroupName & operator =(const char *value) const { - libgamma_group_name = value; + libgamma_group_name_set(value); return *this; } operator const char *() const { - return libgamma_group_name; + return libgamma_group_name_get(); } }; |