chore: comment empty methods that do nothing

This commit is contained in:
sithlord48
2025-07-03 08:33:27 -04:00
committed by Nick Bolton
parent b39b133c9d
commit a175c293f6
3 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,7 @@ public:
// IEventQueueBuffer overrides
void init() override
{
// do nothing
}
void waitForEvent(double timeout) override;
Type getEvent(Event &event, uint32_t &dataID) override;

View File

@ -40,5 +40,6 @@ protected:
void initViewItemOption(QStyleOptionViewItem *option) const override;
void scrollTo(const QModelIndex &, ScrollHint) override
{
// do nothing
}
};

View File

@ -31,6 +31,7 @@ public:
// IEventQueueBuffer overrides
void init() override
{
// do nothing
}
void waitForEvent(double timeout) override;
Type getEvent(Event &event, uint32_t &dataID) override;