Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Christian Butz
VTK
Commits
4d4b291b
Commit
4d4b291b
authored
Mar 31, 2004
by
Mathieu Malaterre
Browse files
FIX: Fixed PrintSelf
parent
e24c1bf5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Common/vtkWin32ProcessOutputWindow.cxx
View file @
4d4b291b
...
...
@@ -15,7 +15,7 @@
#include
"vtkWin32ProcessOutputWindow.h"
#include
"vtkObjectFactory.h"
vtkCxxRevisionMacro
(
vtkWin32ProcessOutputWindow
,
"1.
1
"
);
vtkCxxRevisionMacro
(
vtkWin32ProcessOutputWindow
,
"1.
2
"
);
vtkStandardNewMacro
(
vtkWin32ProcessOutputWindow
);
//----------------------------------------------------------------------------
...
...
@@ -111,3 +111,13 @@ void vtkWin32ProcessOutputWindow::Write(const char* data, int length)
}
}
}
//----------------------------------------------------------------------------
void
vtkWin32ProcessOutputWindow
::
PrintSelf
(
ostream
&
os
,
vtkIndent
indent
)
{
this
->
Superclass
::
PrintSelf
(
os
,
indent
);
os
<<
indent
<<
"Executable: "
<<
(
this
->
Executable
?
this
->
Executable
:
"(none)"
)
<<
"
\n
"
;
}
Common/vtkWin32ProcessOutputWindow.h
View file @
4d4b291b
...
...
@@ -29,6 +29,7 @@ class VTK_COMMON_EXPORT vtkWin32ProcessOutputWindow : public vtkOutputWindow
public:
vtkTypeRevisionMacro
(
vtkWin32ProcessOutputWindow
,
vtkOutputWindow
);
static
vtkWin32ProcessOutputWindow
*
New
();
virtual
void
PrintSelf
(
ostream
&
os
,
vtkIndent
indent
);
// Description:
// Send text to the output window process.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment