diff options
Diffstat (limited to 'src/lib/content_part.h')
| -rw-r--r-- | src/lib/content_part.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/content_part.h b/src/lib/content_part.h index a81334270..443c356b1 100644 --- a/src/lib/content_part.h +++ b/src/lib/content_part.h @@ -41,7 +41,7 @@ protected: void maybe_set (T& member, T new_value, int property) const { - ChangeSignaller<Content> cc (_parent, property); + ContentChangeSignaller cc (_parent, property); { boost::mutex::scoped_lock lm (_mutex); if (member == new_value) { @@ -56,7 +56,7 @@ protected: void maybe_set (boost::optional<T>& member, T new_value, int property) const { - ChangeSignaller<Content> cc (_parent, property); + ContentChangeSignaller cc (_parent, property); { boost::mutex::scoped_lock lm (_mutex); if (member && member.get() == new_value) { |
