diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 01:21:44 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 01:21:44 +0000 |
commit | 321a74d285cb9f12853372e17aeb9d662d6a3a7a (patch) | |
tree | afc661608aa102d7393a29a3f2ea83f38b23a40b /canvas/source/vcl | |
parent | db08080244afe98d8b9d93da54cdeac8c756b12e (diff) |
INTEGRATION: CWS warnings01 (1.6.8); FILE MERGED
2006/02/22 22:27:27 thb 1.6.8.1: #i55991# Removed virtual derivations, where unnecessary; removed unused params; renamed vars which shadowed previous ones; put agg headers into sys header brackets
Diffstat (limited to 'canvas/source/vcl')
-rw-r--r-- | canvas/source/vcl/textlayout.cxx | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/canvas/source/vcl/textlayout.cxx b/canvas/source/vcl/textlayout.cxx index 4e09a7b47450..67bf0b83da22 100644 --- a/canvas/source/vcl/textlayout.cxx +++ b/canvas/source/vcl/textlayout.cxx @@ -4,9 +4,9 @@ * * $RCSfile: textlayout.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: kz $ $Date: 2005-11-02 13:05:43 $ + * last change: $Author: hr $ $Date: 2006-06-20 02:21:44 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -98,6 +98,7 @@ namespace vclcanvas mpRefDevice( rRefDevice ), mnTextDirection( nDirection ) { + (void)nRandomSeed; } void SAL_CALL TextLayout::disposing() @@ -191,14 +192,20 @@ namespace vclcanvas { tools::LocalGuard aGuard; + (void)nSize; + // TODO(F1) return 0.0; } - double SAL_CALL TextLayout::combinedJustify( const uno::Sequence< uno::Reference< rendering::XTextLayout > >& aNextLayouts, double nSize ) throw (lang::IllegalArgumentException, uno::RuntimeException) + double SAL_CALL TextLayout::combinedJustify( const uno::Sequence< uno::Reference< rendering::XTextLayout > >& aNextLayouts, + double nSize ) throw (lang::IllegalArgumentException, uno::RuntimeException) { tools::LocalGuard aGuard; + (void)aNextLayouts; + (void)nSize; + // TODO(F1) return 0.0; } @@ -207,6 +214,8 @@ namespace vclcanvas { tools::LocalGuard aGuard; + (void)aHitPoint; + // TODO(F1) return rendering::TextHit(); } @@ -215,6 +224,9 @@ namespace vclcanvas { tools::LocalGuard aGuard; + (void)nInsertionIndex; + (void)bExcludeLigatures; + // TODO(F1) return rendering::Caret(); } @@ -223,6 +235,10 @@ namespace vclcanvas { tools::LocalGuard aGuard; + (void)nStartIndex; + (void)nCaretAdvancement; + (void)bExcludeLigatures; + // TODO(F1) return 0; } @@ -231,6 +247,9 @@ namespace vclcanvas { tools::LocalGuard aGuard; + (void)nStartIndex; + (void)nEndIndex; + // TODO(F1) return uno::Reference< rendering::XPolyPolygon2D >(); } @@ -239,6 +258,9 @@ namespace vclcanvas { tools::LocalGuard aGuard; + (void)nStartIndex; + (void)nEndIndex; + // TODO(F1) return uno::Reference< rendering::XPolyPolygon2D >(); } |