summaryrefslogtreecommitdiff
path: root/sc/source/ui
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-02-27 12:03:15 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-02-27 12:03:15 +0000
commit8b354457f6b55e62d5ea5fd70419739aee79eb2a (patch)
tree0aaa5727d92f01505c9cd2faf0a2df7ef004509a /sc/source/ui
parent74077e926705ed489bfe693cbdef8a1ab4d17c9d (diff)
INTEGRATION: CWS calcwarnings (1.13.110); FILE MERGED
2006/12/12 17:03:09 nn 1.13.110.2: #i69284# warning-free: ui, unxlngi6 2006/12/01 08:53:24 nn 1.13.110.1: #i69284# warning-free: ui, wntmsci10
Diffstat (limited to 'sc/source/ui')
-rw-r--r--sc/source/ui/dbgui/filtdlg.cxx42
1 files changed, 21 insertions, 21 deletions
diff --git a/sc/source/ui/dbgui/filtdlg.cxx b/sc/source/ui/dbgui/filtdlg.cxx
index 66a006cc4..c54d47a50 100644
--- a/sc/source/ui/dbgui/filtdlg.cxx
+++ b/sc/source/ui/dbgui/filtdlg.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: filtdlg.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: kz $ $Date: 2006-07-21 13:24:15 $
+ * last change: $Author: vg $ $Date: 2007-02-27 13:03:15 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -87,39 +87,39 @@ ScFilterDlg::ScFilterDlg( SfxBindings* pB, SfxChildWindow* pCW, Window* pParent,
: ScAnyRefDlg ( pB, pCW, pParent, RID_SCDLG_FILTER ),
//
- _INIT_COMMON_FILTER_RSCOBJS
aFlCriteria ( this, ScResId( FL_CRITERIA ) ),
- aFtConnect ( this, ScResId( FT_OP ) ),
- aFtField ( this, ScResId( FT_FIELD ) ),
- aFtCond ( this, ScResId( FT_COND ) ),
- aFtVal ( this, ScResId( FT_VAL ) ),
aLbField1 ( this, ScResId( LB_FIELD1 ) ),
- aLbField2 ( this, ScResId( LB_FIELD2 ) ),
- aLbField3 ( this, ScResId( LB_FIELD3 ) ),
- aLbConnect1 ( this, ScResId( LB_OP1 ) ),
- aLbConnect2 ( this, ScResId( LB_OP2 ) ),
aLbCond1 ( this, ScResId( LB_COND1 ) ),
- aLbCond2 ( this, ScResId( LB_COND2 ) ),
- aLbCond3 ( this, ScResId( LB_COND3 ) ),
aEdVal1 ( this, ScResId( ED_VAL1 ) ),
+ aLbConnect1 ( this, ScResId( LB_OP1 ) ),
+ aLbField2 ( this, ScResId( LB_FIELD2 ) ),
+ aLbCond2 ( this, ScResId( LB_COND2 ) ),
aEdVal2 ( this, ScResId( ED_VAL2 ) ),
+ aLbConnect2 ( this, ScResId( LB_OP2 ) ),
+ aLbField3 ( this, ScResId( LB_FIELD3 ) ),
+ aLbCond3 ( this, ScResId( LB_COND3 ) ),
aEdVal3 ( this, ScResId( ED_VAL3 ) ),
+ aFtConnect ( this, ScResId( FT_OP ) ),
+ aFtField ( this, ScResId( FT_FIELD ) ),
+ aFtCond ( this, ScResId( FT_COND ) ),
+ aFtVal ( this, ScResId( FT_VAL ) ),
+ _INIT_COMMON_FILTER_RSCOBJS
aStrEmpty ( ScResId( SCSTR_EMPTY ) ),
aStrNotEmpty ( ScResId( SCSTR_NOTEMPTY ) ),
aStrRow ( ScResId( SCSTR_ROW ) ),
aStrColumn ( ScResId( SCSTR_COLUMN ) ),
//
+ pOptionsMgr ( NULL ),
nWhichQuery ( rArgSet.GetPool()->GetWhich( SID_QUERY ) ),
theQueryData ( ((const ScQueryItem&)
rArgSet.Get( nWhichQuery )).GetQueryData() ),
- nFieldCount ( 0 ),
pOutItem ( NULL ),
- pOptionsMgr ( NULL ),
pViewData ( NULL ),
pDoc ( NULL ),
- pTimer ( NULL ),
+ nSrcTab ( 0 ),
+ nFieldCount ( 0 ),
bRefInputMode ( FALSE ),
- nSrcTab ( 0 )
+ pTimer ( NULL )
{
for (USHORT i=0; i<=MAXCOL; i++)
pEntryLists[i] = NULL;
@@ -309,14 +309,14 @@ BOOL __EXPORT ScFilterDlg::Close()
// Uebergabe eines mit der Maus selektierten Tabellenbereiches, der dann als
// neue Selektion im Referenz-Edit angezeigt wird.
-void ScFilterDlg::SetReference( const ScRange& rRef, ScDocument* pDoc )
+void ScFilterDlg::SetReference( const ScRange& rRef, ScDocument* pDocP )
{
if ( bRefInputMode ) // Nur moeglich, wenn im Referenz-Editmodus
{
if ( rRef.aStart != rRef.aEnd )
RefInputStart( &aEdCopyArea );
String aRefStr;
- rRef.aStart.Format( aRefStr, SCA_ABS_3D, pDoc );
+ rRef.aStart.Format( aRefStr, SCA_ABS_3D, pDocP );
aEdCopyArea.SetRefString( aRefStr );
}
}
@@ -530,7 +530,7 @@ ScQueryItem* ScFilterDlg::GetOutputItem()
ScQueryParam theParam( theQueryData );
USHORT nConnect1 = aLbConnect1.GetSelectEntryPos();
USHORT nConnect2 = aLbConnect2.GetSelectEntryPos();
- BOOL bCopyPosOk;
+ BOOL bCopyPosOk = FALSE;
SCSIZE i;
if ( aBtnCopyResult.IsChecked() )
@@ -683,7 +683,7 @@ IMPL_LINK( ScFilterDlg, EndDlgHdl, Button*, pBtn )
//----------------------------------------------------------------------------
-IMPL_LINK( ScFilterDlg, MoreClickHdl, MoreButton*, pBtn )
+IMPL_LINK( ScFilterDlg, MoreClickHdl, MoreButton*, EMPTYARG )
{
if ( aBtnMore.GetState() )
pTimer->Start();