Gui: Rename 'Output window' to 'Report view'

Closes #7659
This commit is contained in:
luz paz
2022-11-07 20:18:36 -05:00
committed by Chris Hennes
parent 5cc6f4c9d4
commit d14cfc37d5
6 changed files with 10 additions and 10 deletions

View File

@@ -163,7 +163,7 @@ Py::Object PythonStderr::isatty()
void OutputStdout::init_type()
{
behaviors().name("OutputStdout");
behaviors().doc("Redirection of stdout to FreeCAD's output window");
behaviors().doc("Redirection of stdout to FreeCAD's report view");
// you must have overwritten the virtual functions
behaviors().supportRepr();
add_varargs_method("write",&OutputStdout::write,"write()");
@@ -228,7 +228,7 @@ Py::Object OutputStdout::isatty()
void OutputStderr::init_type()
{
behaviors().name("OutputStderr");
behaviors().doc("Redirection of stdout to FreeCAD's output window");
behaviors().doc("Redirection of stdout to FreeCAD's report view");
// you must have overwritten the virtual functions
behaviors().supportRepr();
add_varargs_method("write",&OutputStderr::write,"write()");