Skip to content

Commit ba49016

Browse files
bbrto21swift-kim
authored andcommitted
Fix missing pure virtual function specifier (#324)
Signed-off-by: Boram Bae <[email protected]>
1 parent b8e0149 commit ba49016

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shell/platform/tizen/tizen_window.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ class TizenWindow : public TizenViewBase {
1919
TizenWindow() = default;
2020
virtual ~TizenWindow() = default;
2121

22-
virtual void* GetWindowHandle();
22+
virtual void* GetWindowHandle() = 0;
2323

2424
virtual int32_t GetRotation() = 0;
2525

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

2828
virtual void* GetRenderTargetDisplay() = 0;
2929

0 commit comments

Comments
 (0)