summaryrefslogtreecommitdiff
path: root/chart2/source/controller/accessibility/AccessibleChartElement.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2007-07-25 07:25:34 +0000
committerRüdiger Timm <rt@openoffice.org>2007-07-25 07:25:34 +0000
commitf5bcbeb26fd2b2f72a5e899d6038da6a7a458e07 (patch)
treedfafed5995bd5782ba0fa741c5ff19389a3fb2c1 /chart2/source/controller/accessibility/AccessibleChartElement.cxx
parent43f29e6dd664b4de9229993f918fcdfe576670ac (diff)
INTEGRATION: CWS chart07 (1.2.12); FILE MERGED
2007/06/26 11:02:31 bm 1.2.12.1: #i78784# fix for (broken) gcc 3.3 for Mac OS/X Panther applied
Diffstat (limited to 'chart2/source/controller/accessibility/AccessibleChartElement.cxx')
-rw-r--r--chart2/source/controller/accessibility/AccessibleChartElement.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/chart2/source/controller/accessibility/AccessibleChartElement.cxx b/chart2/source/controller/accessibility/AccessibleChartElement.cxx
index 0870070aa2f7..684eb635d2f2 100644
--- a/chart2/source/controller/accessibility/AccessibleChartElement.cxx
+++ b/chart2/source/controller/accessibility/AccessibleChartElement.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: AccessibleChartElement.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: vg $ $Date: 2007-05-22 17:14:35 $
+ * last change: $Author: rt $ $Date: 2007-07-25 08:25:34 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -253,7 +253,9 @@ Reference< awt::XFont > SAL_CALL AccessibleChartElement::getFont()
CheckDisposeState();
Reference< awt::XFont > xFont;
- Reference< awt::XDevice > xDevice( Reference< awt::XWindow >( GetInfo().m_xWindow ), uno::UNO_QUERY );
+ // using assignment for broken gcc 3.3
+ Reference< awt::XDevice > xDevice = Reference< awt::XDevice >(
+ Reference< awt::XWindow >( GetInfo().m_xWindow ), uno::UNO_QUERY );
if( xDevice.is())
{