Skip to content
GitLab
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
9aaac6a9
Commit
9aaac6a9
authored
Aug 29, 2005
by
Andy Cedilnik
Browse files
BUG: Fix logic
parent
488a4495
Changes
1
Hide whitespace changes
Inline
Side-by-side
Wrapping/vtkWrapTcl.c
View file @
9aaac6a9
...
...
@@ -732,13 +732,13 @@ void vtkParseOutput(FILE *fp, FileInfo *data)
if
(
strcmp
(
data
->
ClassName
,
"vtkRenderWindowInteractor"
)
==
0
)
{
fprintf
(
fp
,
"#include
\"
vtkToolkits.h
\"\n
"
);
fprintf
(
fp
,
"#if defined( VTK_USE_X ) &&
!
defined( VTK_USE_TK )
\n
"
);
fprintf
(
fp
,
"#if defined( VTK_USE_X ) && defined( VTK_USE_TK )
\n
"
);
fprintf
(
fp
,
"# include
\"
vtkXRenderWindowTclInteractor.h
\"\n
"
);
fprintf
(
fp
,
"#endif
\n
"
);
fprintf
(
fp
,
"
\n
ClientData %sNewCommand()
\n
{
\n
"
,
data
->
ClassName
);
fprintf
(
fp
,
"#if defined( VTK_USE_X ) &&
!
defined( VTK_USE_TK )
\n
"
);
fprintf
(
fp
,
"#if defined( VTK_USE_X ) && defined( VTK_USE_TK )
\n
"
);
fprintf
(
fp
,
" %s *temp = vtkXRenderWindowTclInteractor::New();
\n
"
,
data
->
ClassName
);
fprintf
(
fp
,
"#else
\n
"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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