summaryrefslogtreecommitdiff
path: root/sw/source/ui/envelp/syncbtn.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-09-27 10:45:19 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-09-27 10:45:19 +0000
commit2c8ac1934def010c450a77543e7b1c311bbb9b62 (patch)
treeaec0a635b50da4c7575468d3e9f33c14ba7f3aa3 /sw/source/ui/envelp/syncbtn.cxx
parent27ddd1aff234ca7feb2c4df9ec6cc11dbe6c867e (diff)
INTEGRATION: CWS swwarnings (1.5.222); FILE MERGED
2007/05/29 12:44:38 os 1.5.222.2: RESYNC: (1.5-1.6); FILE MERGED 2007/03/26 12:09:02 tl 1.5.222.1: #i69287# warning-free code
Diffstat (limited to 'sw/source/ui/envelp/syncbtn.cxx')
-rw-r--r--sw/source/ui/envelp/syncbtn.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/source/ui/envelp/syncbtn.cxx b/sw/source/ui/envelp/syncbtn.cxx
index 9ae6528827d2..ec9e1378c783 100644
--- a/sw/source/ui/envelp/syncbtn.cxx
+++ b/sw/source/ui/envelp/syncbtn.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: syncbtn.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: kz $ $Date: 2007-05-10 16:17:24 $
+ * last change: $Author: hr $ $Date: 2007-09-27 11:45:19 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -62,13 +62,13 @@ SFX_IMPL_FLOATINGWINDOW( SwSyncChildWin, FN_SYNC_LABELS )
Beschreibung:
------------------------------------------------------------------------*/
-SwSyncChildWin::SwSyncChildWin( Window* pParent,
+SwSyncChildWin::SwSyncChildWin( Window* _pParent,
USHORT nId,
SfxBindings* pBindings,
SfxChildWinInfo* pInfo ) :
- SfxChildWindow( pParent, nId )
+ SfxChildWindow( _pParent, nId )
{
- pWindow = new SwSyncBtnDlg( pBindings, this, pParent);
+ pWindow = new SwSyncBtnDlg( pBindings, this, _pParent);
if (!pInfo->aSize.Width() || !pInfo->aSize.Height())
{
@@ -79,7 +79,7 @@ SwSyncChildWin::SwSyncChildWin( Window* pParent,
pWindow->SetPosPixel(rEditWin.OutputToScreenPixel(Point(0, 0)));
}
else
- pWindow->SetPosPixel(pParent->OutputToScreenPixel(Point(0, 0)));
+ pWindow->SetPosPixel(_pParent->OutputToScreenPixel(Point(0, 0)));
pInfo->aPos = pWindow->GetPosPixel();
pInfo->aSize = pWindow->GetSizePixel();
}
@@ -93,10 +93,10 @@ SwSyncChildWin::SwSyncChildWin( Window* pParent,
Beschreibung:
------------------------------------------------------------------------*/
-SwSyncBtnDlg::SwSyncBtnDlg( SfxBindings* pBindings,
+SwSyncBtnDlg::SwSyncBtnDlg( SfxBindings* _pBindings,
SfxChildWindow* pChild,
Window *pParent) :
- SfxFloatingWindow(pBindings, pChild, pParent, SW_RES(DLG_SYNC_BTN)),
+ SfxFloatingWindow(_pBindings, pChild, pParent, SW_RES(DLG_SYNC_BTN)),
aSyncBtn (this, SW_RES(BTN_SYNC ))
{
FreeResource();
@@ -115,7 +115,7 @@ __EXPORT SwSyncBtnDlg::~SwSyncBtnDlg()
Beschreibung:
--------------------------------------------------------------------*/
-IMPL_LINK( SwSyncBtnDlg, BtnHdl, PushButton *, pBtn )
+IMPL_LINK( SwSyncBtnDlg, BtnHdl, PushButton *, EMPTYARG )
{
SfxViewFrame::Current()->GetDispatcher()->Execute(FN_UPDATE_ALL_LINKS, SFX_CALLMODE_ASYNCHRON);
return 0;