summaryrefslogtreecommitdiff
path: root/sc/source/ui/miscdlgs/simpref.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-02-27 12:33:31 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-02-27 12:33:31 +0000
commitf154e35c7c11f88b643fd9d5138037c2d849d266 (patch)
tree50c409816ee6e1970288702126fa6a9600ba726e /sc/source/ui/miscdlgs/simpref.cxx
parent9fca88dfb93ce79c501c4b582d2d1c911995d669 (diff)
INTEGRATION: CWS calcwarnings (1.8.110); FILE MERGED
2006/12/12 17:03:18 nn 1.8.110.1: #i69284# warning-free: ui, unxlngi6
Diffstat (limited to 'sc/source/ui/miscdlgs/simpref.cxx')
-rw-r--r--sc/source/ui/miscdlgs/simpref.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/miscdlgs/simpref.cxx b/sc/source/ui/miscdlgs/simpref.cxx
index 652b54271f88..9718efa8b10f 100644
--- a/sc/source/ui/miscdlgs/simpref.cxx
+++ b/sc/source/ui/miscdlgs/simpref.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: simpref.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: kz $ $Date: 2006-07-21 14:09:59 $
+ * last change: $Author: vg $ $Date: 2007-02-27 13:33:31 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -135,7 +135,7 @@ void ScSimpleRefDlg::Init()
//----------------------------------------------------------------------------
// Uebergabe eines mit der Maus selektierten Tabellenbereiches, der dann als
// neue Selektion im Referenz-Fenster angezeigt wird.
-void ScSimpleRefDlg::SetReference( const ScRange& rRef, ScDocument* pDoc )
+void ScSimpleRefDlg::SetReference( const ScRange& rRef, ScDocument* pDocP )
{
if ( aEdAssign.IsEnabled() )
{
@@ -147,10 +147,10 @@ void ScSimpleRefDlg::SetReference( const ScRange& rRef, ScDocument* pDoc )
if ( bSingleCell )
{
ScAddress aAdr = rRef.aStart;
- aAdr.Format( aRefStr, SCA_ABS_3D, pDoc );
+ aAdr.Format( aRefStr, SCA_ABS_3D, pDocP );
}
else
- theCurArea.Format( aRefStr, ABS_DREF3D, pDoc );
+ theCurArea.Format( aRefStr, ABS_DREF3D, pDocP );
aEdAssign.SetRefString( aRefStr );