diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-11-09 12:27:43 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-11-09 12:27:43 +0000 |
commit | 7321383ba5ca87c125fbdac1d0845c566d1ff89c (patch) | |
tree | 0478bc95b575e106eda10d01edf6a67aa36d9d63 /canvas/inc | |
parent | 2149cde9f3657bd2c5873ea1eea2a2d674c40190 (diff) |
INTEGRATION: CWS pj40 (1.2.6); FILE MERGED
2005/11/07 17:24:11 thb 1.2.6.1: #i57395# Reformulated, to get past gcc3.3
Diffstat (limited to 'canvas/inc')
-rw-r--r-- | canvas/inc/canvas/base/graphicdevicebase.hxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/canvas/inc/canvas/base/graphicdevicebase.hxx b/canvas/inc/canvas/base/graphicdevicebase.hxx index e6eff93178c0..d88e66463b7b 100644 --- a/canvas/inc/canvas/base/graphicdevicebase.hxx +++ b/canvas/inc/canvas/base/graphicdevicebase.hxx @@ -4,9 +4,9 @@ * * $RCSfile: graphicdevicebase.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: kz $ $Date: 2005-11-02 12:43:16 $ + * last change: $Author: rt $ $Date: 2005-11-09 13:27:43 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -513,7 +513,9 @@ namespace canvas void setDumpScreenContent( const ::com::sun::star::uno::Any& rAny ) { - mbDumpScreenContent = rAny.get< bool >(); + // TODO(Q1): this was mbDumpScreenContent = + // rAny.get<bool>(), only that gcc3.3 wouldn't eat it + rAny >>= mbDumpScreenContent; } HelperType maDeviceHelper; |