mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 12:35:14 +00:00
HexEditor: Use debgln_if
This commit is contained in:
parent
b8d381690c
commit
6c618eb072
Notes:
sideshowbarker
2024-07-18 20:15:16 +09:00
Author: https://github.com/Hendiadyoin1 Commit: https://github.com/SerenityOS/serenity/commit/6c618eb072b Pull-request: https://github.com/SerenityOS/serenity/pull/6357 Reviewed-by: https://github.com/linusg
1 changed files with 3 additions and 9 deletions
|
@ -223,9 +223,7 @@ void HexEditor::mousedown_event(GUI::MouseEvent& event)
|
|||
if (offset < 0 || offset >= static_cast<int>(m_buffer.size()))
|
||||
return;
|
||||
|
||||
#if HEX_DEBUG
|
||||
outln("HexEditor::mousedown_event(hex): offset={}", offset);
|
||||
#endif
|
||||
dbgln_if(HEX_DEBUG, "HexEditor::mousedown_event(hex): offset={}", offset);
|
||||
|
||||
m_edit_mode = EditMode::Hex;
|
||||
m_byte_position = 0;
|
||||
|
@ -245,9 +243,7 @@ void HexEditor::mousedown_event(GUI::MouseEvent& event)
|
|||
if (offset < 0 || offset >= static_cast<int>(m_buffer.size()))
|
||||
return;
|
||||
|
||||
#if HEX_DEBUG
|
||||
outln("HexEditor::mousedown_event(text): offset={}", offset);
|
||||
#endif
|
||||
dbgln_if(HEX_DEBUG, "HexEditor::mousedown_event(text): offset={}", offset);
|
||||
|
||||
m_position = offset;
|
||||
m_byte_position = 0;
|
||||
|
@ -345,9 +341,7 @@ void HexEditor::scroll_position_into_view(int position)
|
|||
|
||||
void HexEditor::keydown_event(GUI::KeyEvent& event)
|
||||
{
|
||||
#if HEX_DEBUG
|
||||
outln("HexEditor::keydown_event key={}", static_cast<u8>(event.key()));
|
||||
#endif
|
||||
dbgln_if(HEX_DEBUG, "HexEditor::keydown_event key={}", static_cast<u8>(event.key()));
|
||||
|
||||
if (event.key() == KeyCode::Key_Up) {
|
||||
if (m_position - bytes_per_row() >= 0) {
|
||||
|
|
Loading…
Add table
Reference in a new issue