- Timestamp:
- Sep 21, 2011, 2:33:59 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/blt4/packages/vizservers/vtkvis/vtkRpCubeAxesActor2D.cpp
r2542 r2550 439 439 // can be changed). Therefore, we can not just assign pointers otherwise 440 440 // each individual axis text prop would point to the same text prop. 441 #if def notdef441 #if 1 442 442 if (this->AxisLabelTextProperty && 443 443 this->AxisLabelTextProperty->GetMTime() > this->BuildTime) … … 1078 1078 } 1079 1079 1080 //----------------------------------------------------------------------------1081 1082 // Disable warnings about qualifiers on return types.1083 #if defined(_COMPILER_VERSION)1084 # pragma set woff 33031085 #endif1086 #if defined(__INTEL_COMPILER)1087 # pragma warning (disable:858)1088 #endif1089 1090 #ifndef VTK_LEGACY_REMOVE1091 # ifdef VTK_WORKAROUND_WINDOWS_MANGLE1092 # undef SetProp1093 # undef GetProp1094 void vtkRpCubeAxesActor2D::SetPropA(vtkProp* prop)1095 {1096 VTK_LEGACY_REPLACED_BODY(vtkRpCubeAxesActor2D::SetProp, "VTK 5.0",1097 vtkRpCubeAxesActor2D::SetViewProp);1098 this->SetViewProp(prop);1099 }1100 void vtkRpCubeAxesActor2D::SetPropW(vtkProp* prop)1101 {1102 VTK_LEGACY_REPLACED_BODY(vtkRpCubeAxesActor2D::SetProp, "VTK 5.0",1103 vtkRpCubeAxesActor2D::SetViewProp);1104 this->SetViewProp(prop);1105 }1106 vtkProp* vtkRpCubeAxesActor2D::GetPropA()1107 {1108 VTK_LEGACY_REPLACED_BODY(vtkRpCubeAxesActor2D::GetProp, "VTK 5.0",1109 vtkRpCubeAxesActor2D::GetViewProp);1110 return this->GetViewProp();1111 }1112 vtkProp* vtkRpCubeAxesActor2D::GetPropW()1113 {1114 VTK_LEGACY_REPLACED_BODY(vtkRpCubeAxesActor2D::GetProp, "VTK 5.0",1115 vtkRpCubeAxesActor2D::GetViewProp);1116 return this->GetViewProp();1117 }1118 # endif1119 void vtkRpCubeAxesActor2D::SetProp(vtkProp* prop)1120 {1121 VTK_LEGACY_REPLACED_BODY(vtkRpCubeAxesActor2D::SetProp, "VTK 5.0",1122 vtkRpCubeAxesActor2D::SetViewProp);1123 this->SetViewProp(prop);1124 }1125 vtkProp* vtkRpCubeAxesActor2D::GetProp()1126 {1127 VTK_LEGACY_REPLACED_BODY(vtkRpCubeAxesActor2D::GetProp, "VTK 5.0",1128 vtkRpCubeAxesActor2D::GetViewProp);1129 return this->GetViewProp();1130 }1131 #endif
Note: See TracChangeset
for help on using the changeset viewer.