Minor fixes
This commit is contained in:
@@ -65,6 +65,7 @@ namespace Nz
|
|||||||
void HandleIndentation(bool add) override;
|
void HandleIndentation(bool add) override;
|
||||||
void HandleSelectionIndentation(bool add) override;
|
void HandleSelectionIndentation(bool add) override;
|
||||||
void HandleWordCursorMove(bool left) override;
|
void HandleWordCursorMove(bool left) override;
|
||||||
|
void HandleWordSelection(const Vector2ui& position) override;
|
||||||
|
|
||||||
void PasteFromClipboard(const Vector2ui& targetPosition) override;
|
void PasteFromClipboard(const Vector2ui& targetPosition) override;
|
||||||
|
|
||||||
|
|||||||
@@ -323,6 +323,7 @@ namespace Nz
|
|||||||
}
|
}
|
||||||
|
|
||||||
case Keyboard::VKey::Return:
|
case Keyboard::VKey::Return:
|
||||||
|
case Keyboard::VKey::NumpadReturn:
|
||||||
{
|
{
|
||||||
bool ignoreDefaultAction = false;
|
bool ignoreDefaultAction = false;
|
||||||
OnTextAreaKeyReturn(this, &ignoreDefaultAction);
|
OnTextAreaKeyReturn(this, &ignoreDefaultAction);
|
||||||
|
|||||||
@@ -151,7 +151,7 @@ if is_plat("windows") then
|
|||||||
set_runtimes(is_mode("debug") and "MDd" or "MD")
|
set_runtimes(is_mode("debug") and "MDd" or "MD")
|
||||||
|
|
||||||
add_defines("_CRT_SECURE_NO_WARNINGS")
|
add_defines("_CRT_SECURE_NO_WARNINGS")
|
||||||
add_cxxflags("/bigobj", "/permissive-", "/Zc:__cplusplus", "/Zc:referenceBinding", "/Zc:throwingNew")
|
add_cxxflags("/bigobj", "/permissive-", "/Zc:__cplusplus", "/Zc:externConstexpr", "/Zc:inline", "/Zc:lambda", "/Zc:preprocessor", "/Zc:referenceBinding", "/Zc:strictStrings", "/Zc:throwingNew")
|
||||||
add_cxflags("/w44062") -- Enable warning: switch case not handled
|
add_cxflags("/w44062") -- Enable warning: switch case not handled
|
||||||
add_cxflags("/wd4251") -- Disable warning: class needs to have dll-interface to be used by clients of class blah blah blah
|
add_cxflags("/wd4251") -- Disable warning: class needs to have dll-interface to be used by clients of class blah blah blah
|
||||||
elseif is_plat("mingw") then
|
elseif is_plat("mingw") then
|
||||||
|
|||||||
Reference in New Issue
Block a user