diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-12 09:46:46 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-12 09:46:46 +0200 |
commit | 5a2cfa677356f77cda15365dd9107ce503e11dd4 (patch) | |
tree | 8c6c2dab7dbde2ee766e2869cbeb1062d0d88d1a /sfx2 | |
parent | 3ce934bfc910af626baa985fa37f9a7ee08ad473 (diff) |
Abbreviate Rectangle as Rect, not Rec
Change-Id: If38a5d23150bcd19a6eb6024c2ef1eea826898f5
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/bastyp/sfxhtml.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/bastyp/sfxhtml.cxx b/sfx2/source/bastyp/sfxhtml.cxx index 4fa1288f62cd..c7d5dd8989f3 100644 --- a/sfx2/source/bastyp/sfxhtml.cxx +++ b/sfx2/source/bastyp/sfxhtml.cxx @@ -183,9 +183,9 @@ IMAPOBJ_SETEVENT: case IMAP_OBJ_RECTANGLE: if( aCoords.size() >=4 ) { - Rectangle aRec( aCoords[0], aCoords[1], - aCoords[2], aCoords[3] ); - IMapRectangleObject aMapRObj( aRec, aHRef, aAlt, String(), aTarget, aName, + Rectangle aRect( aCoords[0], aCoords[1], + aCoords[2], aCoords[3] ); + IMapRectangleObject aMapRObj( aRect, aHRef, aAlt, String(), aTarget, aName, !bNoHRef ); if( !aMacroTbl.empty() ) aMapRObj.SetMacroTable( aMacroTbl ); |