summaryrefslogtreecommitdiff
path: root/math/vtk43/files/patch-IO-vtkImageReader.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'math/vtk43/files/patch-IO-vtkImageReader.cxx')
-rw-r--r--math/vtk43/files/patch-IO-vtkImageReader.cxx30
1 files changed, 0 insertions, 30 deletions
diff --git a/math/vtk43/files/patch-IO-vtkImageReader.cxx b/math/vtk43/files/patch-IO-vtkImageReader.cxx
deleted file mode 100644
index 3e302e72af59..000000000000
--- a/math/vtk43/files/patch-IO-vtkImageReader.cxx
+++ /dev/null
@@ -1,30 +0,0 @@
-diff -u -r1.109 -r1.110
---- IO/vtkImageReader.cxx 2002/12/26 18:18:50 1.109
-+++ IO/vtkImageReader.cxx 2003/10/19 14:38:03 1.110
-@@ -166,7 +166,7 @@
- streamStart += this->GetHeaderSize(idx);
-
- // error checking
-- this->File->seekg((long)streamStart, ios::beg);
-+ this->File->seekg(static_cast<long>(streamStart), ios::beg);
- if (this->File->fail())
- {
- vtkErrorMacro(<< "File operation failed: " << streamStart << ", ext: "
-@@ -366,7 +366,7 @@
- // if that happens, store the value in correction and apply later
- if (filePos + streamSkip0 >= 0)
- {
-- self->GetFile()->seekg(self->GetFile()->tellg() + streamSkip0, ios::beg);
-+ self->GetFile()->seekg(static_cast<long>(self->GetFile()->tellg()) + streamSkip0, ios::beg);
- correction = 0;
- }
- else
-@@ -376,7 +376,7 @@
- outPtr1 += outIncr[1];
- }
- // move to the next image in the file and data
-- self->GetFile()->seekg(self->GetFile()->tellg() + streamSkip1 + correction,
-+ self->GetFile()->seekg(static_cast<long>(self->GetFile()->tellg()) + streamSkip1 + correction,
- ios::beg);
- outPtr2 += outIncr[2];
- }