Skip to content

Commit

Permalink
Copy-paste error, duplicate ORing
Browse files Browse the repository at this point in the history
Change-Id: I5adee5e4e29ae03aa4363550a11a044d447ae74b
  • Loading branch information
seanm committed Feb 17, 2015
1 parent b85b5f6 commit 2f2c9e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Rendering/OpenGL/vtkXRenderWindowTclInteractor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ void vtkXRenderWindowTclInteractor::Enable()
ButtonPressMask | ButtonReleaseMask |
ExposureMask | StructureNotifyMask |
EnterWindowMask | LeaveWindowMask |
PointerMotionMask | PointerMotionMask);
PointerMotionMask);

// Setup for capturing the window deletion
this->KillAtom = XInternAtom(this->DisplayId,"WM_DELETE_WINDOW",False);
Expand Down
2 changes: 1 addition & 1 deletion Rendering/Tk/vtkXRenderWindowTclInteractor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ void vtkXRenderWindowTclInteractor::Enable()
ButtonPressMask | ButtonReleaseMask |
ExposureMask | StructureNotifyMask |
EnterWindowMask | LeaveWindowMask |
PointerMotionMask | PointerMotionMask);
PointerMotionMask);

// Setup for capturing the window deletion
this->KillAtom = XInternAtom(this->DisplayId,"WM_DELETE_WINDOW",False);
Expand Down
2 changes: 1 addition & 1 deletion Views/Infovis/vtkTreeHeatmapItem.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ void vtkTreeHeatmapItem::SetColumnTree(vtkTree *tree)
}

if (this->Orientation == vtkDendrogramItem::LEFT_TO_RIGHT ||
this->Orientation == vtkDendrogramItem::LEFT_TO_RIGHT)
this->Orientation == vtkDendrogramItem::RIGHT_TO_LEFT)
{
this->ColumnDendrogram->SetOrientation(vtkDendrogramItem::UP_TO_DOWN);
}
Expand Down

0 comments on commit 2f2c9e3

Please sign in to comment.