Skip to content

Commit

Permalink
Fix missing pure virtual function specifier (#324)
Browse files Browse the repository at this point in the history
Signed-off-by: Boram Bae <[email protected]>
  • Loading branch information
bbrto21 authored Aug 4, 2022
1 parent 0abeb89 commit 1f26691
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shell/platform/tizen/tizen_window.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ class TizenWindow : public TizenViewBase {
TizenWindow() = default;
virtual ~TizenWindow() = default;

virtual void* GetWindowHandle();
virtual void* GetWindowHandle() = 0;

virtual int32_t GetRotation() = 0;

virtual void SetPreferredOrientations(const std::vector<int>& rotations);
virtual void SetPreferredOrientations(const std::vector<int>& rotations) = 0;

virtual void* GetRenderTargetDisplay() = 0;

Expand Down

0 comments on commit 1f26691

Please sign in to comment.