diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-12-14 16:26:33 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-12-14 16:26:33 +0000 |
commit | d5b1a023b82d66e5461d52b0bda778df060ab827 (patch) | |
tree | e96996c2a382a6f8c9e9731c01ed33534b0e11f8 /sd/source/ui/view/drviews1.cxx | |
parent | 011c91b804f5478e6e4e38836f7f7e3d66cf8340 (diff) |
INTEGRATION: CWS impressfunctions (1.59.12); FILE MERGED
2005/11/28 18:00:57 cl 1.59.12.2: RESYNC: (1.59-1.61); FILE MERGED
2005/10/28 10:58:25 cl 1.59.12.1: #125341# reworked FuPoor classes to use refcounting
Diffstat (limited to 'sd/source/ui/view/drviews1.cxx')
-rw-r--r-- | sd/source/ui/view/drviews1.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sd/source/ui/view/drviews1.cxx b/sd/source/ui/view/drviews1.cxx index a58da6d84d2e..0856ee38b98c 100644 --- a/sd/source/ui/view/drviews1.cxx +++ b/sd/source/ui/view/drviews1.cxx @@ -4,9 +4,9 @@ * * $RCSfile: drviews1.cxx,v $ * - * $Revision: 1.61 $ + * $Revision: 1.62 $ * - * last change: $Author: hr $ $Date: 2005-10-25 11:53:38 $ + * last change: $Author: rt $ $Date: 2005-12-14 17:26:33 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -342,9 +342,9 @@ void DrawViewShell::SelectionHasChanged (void) RTL_TEXTENCODING_UTF8 )).getStr() ); } - if( pFuActual ) + if( HasCurrentFunction() ) { - pFuActual->SelectionHasChanged(); + GetCurrentFunction()->SelectionHasChanged(); } else { @@ -414,9 +414,9 @@ USHORT DrawViewShell::PrepareClose( BOOL bUI, BOOL bForBrowsing ) } */ - if( bRet && pFuActual ) + if( bRet && HasCurrentFunction() ) { - USHORT nID = pFuActual->GetSlotID(); + USHORT nID = GetCurrentFunction()->GetSlotID(); if (nID == SID_TEXTEDIT || nID == SID_ATTR_CHAR) { pDrView->EndTextEdit(); |