mirror of
https://github.com/clangen/musikcube.git
synced 2024-12-27 21:14:08 +00:00
More macOS fixes.
This commit is contained in:
parent
b94f29305e
commit
904293f080
@ -41,7 +41,14 @@
|
||||
#include "IKeyHandler.h"
|
||||
|
||||
namespace cursespp {
|
||||
class ScrollableWindow : public IScrollable, public IKeyHandler, public Window {
|
||||
class ScrollableWindow :
|
||||
public IScrollable,
|
||||
public IKeyHandler,
|
||||
#if (__clang_major__ == 7 && __clang_minor__ == 3)
|
||||
public std::enable_shared_from_this<ScrollableWindow>,
|
||||
#endif
|
||||
public Window
|
||||
{
|
||||
public:
|
||||
ScrollableWindow(
|
||||
std::shared_ptr<IScrollAdapter> adapter,
|
||||
|
Loading…
Reference in New Issue
Block a user