Sdk/TextAreaWidget: Fix compilation
This commit is contained in:
@@ -78,7 +78,6 @@ namespace Ndk
|
|||||||
void OnKeyPressed(const Nz::WindowEvent::KeyEvent& key) override;
|
void OnKeyPressed(const Nz::WindowEvent::KeyEvent& key) override;
|
||||||
void OnKeyReleased(const Nz::WindowEvent::KeyEvent& key) override;
|
void OnKeyReleased(const Nz::WindowEvent::KeyEvent& key) override;
|
||||||
void OnMouseButtonPress(int /*x*/, int /*y*/, Nz::Mouse::Button button) override;
|
void OnMouseButtonPress(int /*x*/, int /*y*/, Nz::Mouse::Button button) override;
|
||||||
void OnMouseMoved(int x, int y, int deltaX, int deltaY) override;
|
|
||||||
void OnTextEntered(char32_t character, bool repeated) override;
|
void OnTextEntered(char32_t character, bool repeated) override;
|
||||||
|
|
||||||
void RefreshCursor();
|
void RefreshCursor();
|
||||||
|
|||||||
@@ -234,14 +234,6 @@ namespace Ndk
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void TextAreaWidget::OnMouseMoved(int x, int y, int /*deltaX*/, int /*deltaY*/)
|
|
||||||
{
|
|
||||||
if (m_isMouseButtonDown)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void TextAreaWidget::OnTextEntered(char32_t character, bool /*repeated*/)
|
void TextAreaWidget::OnTextEntered(char32_t character, bool /*repeated*/)
|
||||||
{
|
{
|
||||||
if (m_readOnly)
|
if (m_readOnly)
|
||||||
|
|||||||
Reference in New Issue
Block a user