diff --git a/docs/source/release/v3.11.0/ui.rst b/docs/source/release/v3.11.0/ui.rst
index 642c6affc3d53301b69a034402020c402e2b118e..0539ccf58524bfbe6831a8ee42b8ed150d581adb 100644
--- a/docs/source/release/v3.11.0/ui.rst
+++ b/docs/source/release/v3.11.0/ui.rst
@@ -56,7 +56,7 @@ SliceViewer Improvements
 - SliceViewer input of number of bins, thickness, and slice point now waits until the editing is finished to rebin or changing slice point instead of changing with each digit entered.
 
 VSI Improvements
----------------
+----------------
 - ParaView has been updated to to `v5.4.0 <https://blog.kitware.com/paraview-5-4-0-release-notes/>`_.
 
 .. figure:: ../../images/LaNaF4_3D_Slices.png
diff --git a/qt/paraview_ext/PVPlugins/Representations/AlignedCutter.cxx b/qt/paraview_ext/PVPlugins/Representations/AlignedCutter.cxx
index 49afa0848010800d6e129f5880a2519b62e32390..040c4ad4e8b66775562910685a2dad197d2384a8 100644
--- a/qt/paraview_ext/PVPlugins/Representations/AlignedCutter.cxx
+++ b/qt/paraview_ext/PVPlugins/Representations/AlignedCutter.cxx
@@ -154,7 +154,7 @@ void AlignedCutter::AlignedStructuredGridCutter(vtkDataSet *dataSetInput,
     } else if (AxisNumber == 2) {
       for (int i = 0; i < celldims[0]; ++i) {
         for (int j=0; j < celldims[1]; ++j) {
-          auto index = i + j * celldims[0] + min * cd01;
+          vtkIdType index = i + j * celldims[0] + min * cd01;
           if (input->IsCellVisible(index)) {
             double x[3];
             inPts->GetPoint(i + j * dims[0] + min * d01, x);