diff options
Diffstat (limited to 'Userland/DevTools/HackStudio')
3 files changed, 7 insertions, 7 deletions
diff --git a/Userland/DevTools/HackStudio/CursorTool.cpp b/Userland/DevTools/HackStudio/CursorTool.cpp index 15fbce04d9..30899dba16 100644 --- a/Userland/DevTools/HackStudio/CursorTool.cpp +++ b/Userland/DevTools/HackStudio/CursorTool.cpp @@ -36,7 +36,7 @@ namespace HackStudio { void CursorTool::on_mousedown(GUI::MouseEvent& event) { -#if DEBUG_CURSOR_TOOL +#if CURSOR_TOOL_DEBUG dbgln("CursorTool::on_mousedown"); #endif auto& form_widget = m_editor.form_widget(); @@ -73,7 +73,7 @@ void CursorTool::on_mousedown(GUI::MouseEvent& event) void CursorTool::on_mouseup(GUI::MouseEvent& event) { -#if DEBUG_CURSOR_TOOL +#if CURSOR_TOOL_DEBUG dbgln("CursorTool::on_mouseup"); #endif if (event.button() == GUI::MouseButton::Left) { @@ -94,7 +94,7 @@ void CursorTool::on_mouseup(GUI::MouseEvent& event) void CursorTool::on_mousemove(GUI::MouseEvent& event) { -#if DEBUG_CURSOR_TOOL +#if CURSOR_TOOL_DEBUG dbgln("CursorTool::on_mousemove"); #endif auto& form_widget = m_editor.form_widget(); @@ -133,7 +133,7 @@ void CursorTool::on_mousemove(GUI::MouseEvent& event) void CursorTool::on_keydown(GUI::KeyEvent& event) { -#if DEBUG_CURSOR_TOOL +#if CURSOR_TOOL_DEBUG dbgln("CursorTool::on_keydown"); #endif diff --git a/Userland/DevTools/HackStudio/LanguageServers/Cpp/ClientConnection.cpp b/Userland/DevTools/HackStudio/LanguageServers/Cpp/ClientConnection.cpp index 0f1eb1d228..c0555560e1 100644 --- a/Userland/DevTools/HackStudio/LanguageServers/Cpp/ClientConnection.cpp +++ b/Userland/DevTools/HackStudio/LanguageServers/Cpp/ClientConnection.cpp @@ -104,7 +104,7 @@ void ClientConnection::handle(const Messages::LanguageServer::FileEditInsertText } GUI::TextPosition start_position { (size_t)message.start_line(), (size_t)message.start_column() }; document->insert_at(start_position, message.text(), &s_default_document_client); -#if DEBUG_FILE_CONTENT +#if FILE_CONTENT_DEBUG dbgln("{}", document->text()); #endif } @@ -129,7 +129,7 @@ void ClientConnection::handle(const Messages::LanguageServer::FileEditRemoveText }; document->remove(range); -#if DEBUG_FILE_CONTENT +#if FILE_CONTENT_DEBUG dbgln("{}", document->text()); #endif } diff --git a/Userland/DevTools/HackStudio/LanguageServers/Shell/ClientConnection.cpp b/Userland/DevTools/HackStudio/LanguageServers/Shell/ClientConnection.cpp index 93b2b11a65..0ae5a0c469 100644 --- a/Userland/DevTools/HackStudio/LanguageServers/Shell/ClientConnection.cpp +++ b/Userland/DevTools/HackStudio/LanguageServers/Shell/ClientConnection.cpp @@ -104,7 +104,7 @@ void ClientConnection::handle(const Messages::LanguageServer::FileEditInsertText } GUI::TextPosition start_position { (size_t)message.start_line(), (size_t)message.start_column() }; document->insert_at(start_position, message.text(), &s_default_document_client); -#if DEBUG_FILE_CONTENT +#if FILE_CONTENT_DEBUG dbgln("{}", document->text()); #endif } |