Sine Striker
2023-12-03 eb266da10552eeefcb0f7dfe514d4385aec563f8
src/core/windowitemdelegate.h
@@ -9,8 +9,6 @@
namespace QWK {
    class WindowItemDelegate {
        Q_DISABLE_COPY(WindowItemDelegate)
    public:
        WindowItemDelegate() = default;
        virtual ~WindowItemDelegate() = default;
@@ -20,9 +18,10 @@
        virtual bool isEnabled(QObject *obj) const = 0;
        virtual bool isVisible(QObject *obj) const = 0;
    };
    using WindowItemDelegatePtr = std::shared_ptr<WindowItemDelegate>;
    private:
        Q_DISABLE_COPY_MOVE(WindowItemDelegate)
    };
}