summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-19 11:21:57 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-19 11:22:21 +0100
commit16af33302b19fd90c5c24031e23a7c36e3b6b412 (patch)
tree8d6f00f7b4e1ed84ec4d24980efcc4e60414247b
parentc6b8c461bb4b119f833517112813def858903415 (diff)
Fix C++03 enum member scope.
-rw-r--r--sc/qa/extras/xdatapilotdescriptor.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/qa/extras/xdatapilotdescriptor.cxx b/sc/qa/extras/xdatapilotdescriptor.cxx
index 97612e85aad0..e5151d5df590 100644
--- a/sc/qa/extras/xdatapilotdescriptor.cxx
+++ b/sc/qa/extras/xdatapilotdescriptor.cxx
@@ -156,35 +156,35 @@ void ScXDataPilotDescriptor::testGetDataPilotFields_Impl( uno::Reference< sheet:
case 0:
{
uno::Any aAny;
- aAny<<= sheet::DataPilotFieldOrientation::DataPilotFieldOrientation_COLUMN;
+ aAny<<= sheet::DataPilotFieldOrientation_COLUMN;
xPropSet->setPropertyValue(aOrientation, aAny);
}
break;
case 1:
{
uno::Any aAny;
- aAny<<= sheet::DataPilotFieldOrientation::DataPilotFieldOrientation_ROW;
+ aAny<<= sheet::DataPilotFieldOrientation_ROW;
xPropSet->setPropertyValue(aOrientation, aAny);
}
break;
case 2:
{
uno::Any aAny;
- aAny<<= sheet::DataPilotFieldOrientation::DataPilotFieldOrientation_DATA;
+ aAny<<= sheet::DataPilotFieldOrientation_DATA;
xPropSet->setPropertyValue(aOrientation, aAny);
}
break;
case 3:
{
uno::Any aAny;
- aAny<<= sheet::DataPilotFieldOrientation::DataPilotFieldOrientation_HIDDEN;
+ aAny<<= sheet::DataPilotFieldOrientation_HIDDEN;
xPropSet->setPropertyValue(aOrientation, aAny);
}
break;
case 4:
{
uno::Any aAny;
- aAny<<= sheet::DataPilotFieldOrientation::DataPilotFieldOrientation_PAGE;
+ aAny<<= sheet::DataPilotFieldOrientation_PAGE;
xPropSet->setPropertyValue(aOrientation, aAny);
}
break;