summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/futxtatt.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-12-12 16:26:30 +0000
committerKurt Zenker <kz@openoffice.org>2006-12-12 16:26:30 +0000
commite1bd69b3030eb8179a65353b63251a38b312ffc6 (patch)
tree3056fcfe435ed2c5c9d11d900fa2ea6efb42d235 /sd/source/ui/func/futxtatt.cxx
parentf8c39216403bd3f09367f942d99e512556c355fd (diff)
INTEGRATION: CWS sdwarningsbegone (1.7.38); FILE MERGED
2006/11/22 12:41:57 cl 1.7.38.1: #i69285# warning free code changes for unxlngi6.pro
Diffstat (limited to 'sd/source/ui/func/futxtatt.cxx')
-rw-r--r--sd/source/ui/func/futxtatt.cxx13
1 files changed, 6 insertions, 7 deletions
diff --git a/sd/source/ui/func/futxtatt.cxx b/sd/source/ui/func/futxtatt.cxx
index 71ef23a1b914..e6074b617101 100644
--- a/sd/source/ui/func/futxtatt.cxx
+++ b/sd/source/ui/func/futxtatt.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: futxtatt.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: obo $ $Date: 2006-09-16 18:58:03 $
+ * last change: $Author: kz $ $Date: 2006-12-12 17:26:30 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -46,7 +46,6 @@
#include <sfx2/request.hxx>
#endif
-//CHINA001 #include <svx/textattr.hxx>
#include <svx/svxdlg.hxx>
#include <svx/dialogs.hrc>
@@ -87,15 +86,15 @@ FunctionReference FuTextAttrDlg::Create( ViewShell* pViewSh, ::sd::Window* pWin,
void FuTextAttrDlg::DoExecute( SfxRequest& rReq )
{
- SfxItemSet aNewAttr( pDoc->GetPool() );
- pView->GetAttributes( aNewAttr );
+ SfxItemSet aNewAttr( mpDoc->GetPool() );
+ mpView->GetAttributes( aNewAttr );
const SfxItemSet* pArgs = rReq.GetArgs();
if( !pArgs )
{
SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
- SfxAbstractTabDialog *pDlg = pFact->CreateTextTabDialog( NULL, &aNewAttr, ResId( RID_SVXDLG_TEXT ), pView );
+ SfxAbstractTabDialog *pDlg = pFact->CreateTextTabDialog( NULL, &aNewAttr, ResId( RID_SVXDLG_TEXT ), mpView );
USHORT nResult = pDlg->Execute();
@@ -117,7 +116,7 @@ void FuTextAttrDlg::DoExecute( SfxRequest& rReq )
}
delete( pDlg );
}
- pView->SetAttributes( *pArgs );
+ mpView->SetAttributes( *pArgs );
}