mirror of
https://github.com/transmission/transmission.git
synced 2025-12-25 12:48:10 +00:00
refactor: remove TR_DISABLE_COPY_MOVE macro (#7344)
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user