summaryrefslogtreecommitdiff
path: root/core/undo_redo.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-02-05 15:43:01 +0100
committerGitHub <noreply@github.com>2020-02-05 15:43:01 +0100
commit7ada59efb79f64882305c26c3a155385e5dcc05c (patch)
tree55db440c5a85ee333fd18236b3fe897a19fed554 /core/undo_redo.cpp
parent9591ca3fe58298ef01ab12f1e59e91399a7ce2d4 (diff)
parent677604685dd2292f44fedb1b9a5b08b22137219a (diff)
Merge pull request #33391 from madmiraal/cleanup-error_macros
Clean up error_macros.h
Diffstat (limited to 'core/undo_redo.cpp')
-rw-r--r--core/undo_redo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/undo_redo.cpp b/core/undo_redo.cpp
index 5d1144e1f5..577879d448 100644
--- a/core/undo_redo.cpp
+++ b/core/undo_redo.cpp
@@ -293,7 +293,7 @@ void UndoRedo::_process_operation_list(List<Operation>::Element *E) {
Variant::CallError ce;
obj->call(op.name, (const Variant **)argptrs.ptr(), argc, ce);
if (ce.error != Variant::CallError::CALL_OK) {
- ERR_PRINTS("Error calling method from signal '" + String(op.name) + "': " + Variant::get_call_error_text(obj, op.name, (const Variant **)argptrs.ptr(), argc, ce));
+ ERR_PRINT("Error calling method from signal '" + String(op.name) + "': " + Variant::get_call_error_text(obj, op.name, (const Variant **)argptrs.ptr(), argc, ce));
}
#ifdef TOOLS_ENABLED
Resource *res = Object::cast_to<Resource>(obj);