summaryrefslogtreecommitdiff
path: root/sw/source/core/unocore/unodraw.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 11:40:57 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 11:40:57 +0000
commitab2c997c2275eb6d881fe384e64d9d5a17f09369 (patch)
tree993de5c072f1ceabaf7952ae1679e4eef0d7e8ca /sw/source/core/unocore/unodraw.cxx
parentb8b9462439d3d8ef754e8cc5f9710c69034518eb (diff)
INTEGRATION: CWS warnings01 (1.69.214); FILE MERGED
2006/05/15 12:30:45 sb 1.69.214.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162.
Diffstat (limited to 'sw/source/core/unocore/unodraw.cxx')
-rw-r--r--sw/source/core/unocore/unodraw.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/core/unocore/unodraw.cxx b/sw/source/core/unocore/unodraw.cxx
index ee3997bb82c4..8b7d20fa4e17 100644
--- a/sw/source/core/unocore/unodraw.cxx
+++ b/sw/source/core/unocore/unodraw.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: unodraw.cxx,v $
*
- * $Revision: 1.69 $
+ * $Revision: 1.70 $
*
- * last change: $Author: hr $ $Date: 2005-12-28 17:12:52 $
+ * last change: $Author: hr $ $Date: 2006-06-19 12:40:57 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -380,7 +380,7 @@ SwFmDrawPage::~SwFmDrawPage() throw ()
const SdrMarkList& SwFmDrawPage::PreGroup(const uno::Reference< drawing::XShapes > & xShapes)
{
_SelectObjectsInView( xShapes, GetPageView() );
- const SdrMarkList& rMarkList = pView->GetMarkedObjectList();
+ const SdrMarkList& rMarkList = mpView->GetMarkedObjectList();
return rMarkList;
}
/*-- 22.01.99 11:13:08---------------------------------------------------
@@ -404,7 +404,7 @@ void SwFmDrawPage::PreUnGroup(const uno::Reference< drawing::XShapeGroup > xSha
SdrPageView* SwFmDrawPage::GetPageView()
{
if(!pPageView)
- pPageView = pView->ShowPage( pPage, Point() );
+ pPageView = mpView->ShowPage( mpPage, Point() );
return pPageView;
}
/*-- 22.01.99 11:13:08---------------------------------------------------
@@ -412,8 +412,8 @@ SdrPageView* SwFmDrawPage::GetPageView()
-----------------------------------------------------------------------*/
void SwFmDrawPage::RemovePageView()
{
- if(pPageView && pView)
- pView->HidePage( pPageView );
+ if(pPageView && mpView)
+ mpView->HidePage( pPageView );
pPageView = 0;
}
/*-- 22.01.99 11:13:09---------------------------------------------------