From 9f5ac1559ff9c55549cd32cc0f9b642881dbc0d0 Mon Sep 17 00:00:00 2001 From: Steven Hahn <hahnse@ornl.gov> Date: Mon, 21 Aug 2017 17:00:15 -0400 Subject: [PATCH] Try fixing Windows linking issues. --- qt/paraview_ext/PVPlugins/Representations/AlignedCutter.h | 2 +- .../PVPlugins/Representations/AlignedThreeSliceFilter.h | 3 +-- .../Representations/vtkAlignedGeometrySliceRepresentation.h | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/qt/paraview_ext/PVPlugins/Representations/AlignedCutter.h b/qt/paraview_ext/PVPlugins/Representations/AlignedCutter.h index 3881af7974f..9b31995e45e 100644 --- a/qt/paraview_ext/PVPlugins/Representations/AlignedCutter.h +++ b/qt/paraview_ext/PVPlugins/Representations/AlignedCutter.h @@ -47,7 +47,7 @@ #include "vtkCutter.h" -class VTKFILTERSCORE_EXPORT AlignedCutter : public vtkCutter { +class VTK_EXPORT AlignedCutter : public vtkCutter { public: vtkTypeMacro(AlignedCutter, vtkCutter); vtkSetMacro(AxisNumber, int); diff --git a/qt/paraview_ext/PVPlugins/Representations/AlignedThreeSliceFilter.h b/qt/paraview_ext/PVPlugins/Representations/AlignedThreeSliceFilter.h index 4447fb4ca12..fe8c3c25716 100644 --- a/qt/paraview_ext/PVPlugins/Representations/AlignedThreeSliceFilter.h +++ b/qt/paraview_ext/PVPlugins/Representations/AlignedThreeSliceFilter.h @@ -32,8 +32,7 @@ #include "vtkPVClientServerCoreRenderingModule.h" //needed for exports #include "vtkThreeSliceFilter.h" -class VTKPVCLIENTSERVERCORERENDERING_EXPORT AlignedThreeSliceFilter - : public vtkThreeSliceFilter { +class VTK_EXPORT AlignedThreeSliceFilter : public vtkThreeSliceFilter { public: vtkTypeMacro(AlignedThreeSliceFilter, vtkThreeSliceFilter); /** diff --git a/qt/paraview_ext/PVPlugins/Representations/vtkAlignedGeometrySliceRepresentation.h b/qt/paraview_ext/PVPlugins/Representations/vtkAlignedGeometrySliceRepresentation.h index 6a69370583b..1e24e767c3b 100644 --- a/qt/paraview_ext/PVPlugins/Representations/vtkAlignedGeometrySliceRepresentation.h +++ b/qt/paraview_ext/PVPlugins/Representations/vtkAlignedGeometrySliceRepresentation.h @@ -27,8 +27,8 @@ #include "vtkGeometryRepresentation.h" -class VTKPVCLIENTSERVERCORERENDERING_EXPORT - vtkAlignedGeometrySliceRepresentation : public vtkGeometryRepresentation { +class VTK_EXPORT vtkAlignedGeometrySliceRepresentation + : public vtkGeometryRepresentation { public: static vtkAlignedGeometrySliceRepresentation *New(); vtkTypeMacro(vtkAlignedGeometrySliceRepresentation, -- GitLab