refactor: remove TR_DISABLE_COPY_MOVE macro (#7344)

This commit is contained in:
Charles Kerr
2024-12-29 00:15:39 -06:00
committed by GitHub
parent ba55b7cd7c
commit 7820f54ba1
79 changed files with 349 additions and 241 deletions

View File

@@ -27,10 +27,12 @@ class PathButton::Impl
{
public:
explicit Impl(PathButton& widget);
Impl(Impl&&) = delete;
Impl(Impl const&) = delete;
Impl& operator=(Impl&&) = delete;
Impl& operator=(Impl const&) = delete;
~Impl() = default;
TR_DISABLE_COPY_MOVE(Impl)
#if GTKMM_CHECK_VERSION(4, 0, 0)
std::string const& get_filename() const;
void set_filename(std::string const& value);