summaryrefslogtreecommitdiff
path: root/openEMS/tools/vtk_file_writer.cpp
diff options
context:
space:
mode:
authorRuben Undheim <ruben.undheim@gmail.com>2016-07-09 11:12:02 +0200
committerRuben Undheim <ruben.undheim@gmail.com>2019-10-19 19:20:44 +0200
commitafe6b7a9fd81fe185c13cf9425b7f63933281b01 (patch)
tree00abf9ce8477a5dbcefb884bb4fb14c34bc380b8 /openEMS/tools/vtk_file_writer.cpp
parent584c8f23e595e0d2cbef826c1569f56361b83654 (diff)
Spelling fixes
Gbp-Pq: Name 0002-Spelling-fixes.patch
Diffstat (limited to 'openEMS/tools/vtk_file_writer.cpp')
-rw-r--r--openEMS/tools/vtk_file_writer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/openEMS/tools/vtk_file_writer.cpp b/openEMS/tools/vtk_file_writer.cpp
index 79c40f3..be6586f 100644
--- a/openEMS/tools/vtk_file_writer.cpp
+++ b/openEMS/tools/vtk_file_writer.cpp
@@ -70,7 +70,7 @@ void VTK_File_Writer::SetMeshLines(double const* const* lines, unsigned int cons
vtkRectilinearGrid* RectGrid = dynamic_cast<vtkRectilinearGrid*>(m_GridData);
if (RectGrid==NULL)
{
- cerr << "VTK_File_Writer::SetMeshLines: Error, grid invalid, this should not have happend! " << endl;
+ cerr << "VTK_File_Writer::SetMeshLines: Error, grid invalid, this should not have happened! " << endl;
exit(1);
}
RectGrid->SetDimensions(count[0],count[1],count[2]);
@@ -97,7 +97,7 @@ void VTK_File_Writer::SetMeshLines(double const* const* lines, unsigned int cons
vtkStructuredGrid* StructGrid = dynamic_cast<vtkStructuredGrid*>(m_GridData);
if (StructGrid==NULL)
{
- cerr << "VTK_File_Writer::SetMeshLines: Error, grid invalid, this should not have happend! " << endl;
+ cerr << "VTK_File_Writer::SetMeshLines: Error, grid invalid, this should not have happened! " << endl;
exit(1);
}