summaryrefslogtreecommitdiff
path: root/sc/source/ui/dbgui
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 13:26:16 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 13:26:16 +0000
commit0081cb1bde344c4366536fd5e7461ab11df2ffa3 (patch)
tree570c2a4de1935d1f419e8b9facb6e10024f95af1 /sc/source/ui/dbgui
parent1c70089b84146c3a41007103801d2598dfb05484 (diff)
INTEGRATION: CWS ooo20031216 (1.7.12); FILE MERGED
2003/12/13 13:37:57 waratah 1.7.12.1: #i1858# replace some NULL constants with 0 (zero), used with non-pointers
Diffstat (limited to 'sc/source/ui/dbgui')
-rw-r--r--sc/source/ui/dbgui/filtdlg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/dbgui/filtdlg.cxx b/sc/source/ui/dbgui/filtdlg.cxx
index db0cda5ceff7..1caa9cb2f47f 100644
--- a/sc/source/ui/dbgui/filtdlg.cxx
+++ b/sc/source/ui/dbgui/filtdlg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: filtdlg.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: vg $ $Date: 2003-12-17 19:53:44 $
+ * last change: $Author: hr $ $Date: 2004-02-04 14:26:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -197,7 +197,7 @@ void __EXPORT ScFilterDlg::Init( const SfxItemSet& rArgSet )
pViewData = rQueryItem.GetViewData();
pDoc = pViewData ? pViewData->GetDocument() : NULL;
- nSrcTab = pViewData ? pViewData->GetTabNo() : NULL;
+ nSrcTab = pViewData ? pViewData->GetTabNo() : 0;
// fuer leichteren Zugriff:
aFieldLbArr [0] = &aLbField1;