Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9d10637e authored by Greg Kaiser's avatar Greg Kaiser Committed by Gerrit Code Review
Browse files

Merge changes Ie072511b,I6424f90c

* changes:
  TreeInfo: Make ~ErrorHandler() virtual
  RenderThread: Make ~IFrameCallback() virtual
parents 7e54042f 174b50fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ public:
    virtual void onError(const std::string& message) = 0;

protected:
    ~ErrorHandler() {}
    virtual ~ErrorHandler() {}
};

class TreeObserver {
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ public:
    virtual void doFrame() = 0;

protected:
    ~IFrameCallback() {}
    virtual ~IFrameCallback() {}
};

struct VsyncSource {