From 4dbeadb9c1e46ac0008f076cd6f9c5d0a38a4d40 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 10 Jun 2014 17:23:12 +0200 Subject: Change SfxTabPage::FillItemSet param from ref to pointer ...there were a number of call sites that passed undefined "null pointer references" (apparently in cases where the passed argument was actually unused) Change-Id: I19799e90f0cd8e98367782441a5ea9df27b59830 --- sc/source/ui/inc/tphf.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc/source/ui/inc/tphf.hxx') diff --git a/sc/source/ui/inc/tphf.hxx b/sc/source/ui/inc/tphf.hxx index 2f4fff087ac8..1061e4139128 100644 --- a/sc/source/ui/inc/tphf.hxx +++ b/sc/source/ui/inc/tphf.hxx @@ -30,7 +30,7 @@ public: virtual ~ScHFPage(); virtual void Reset( const SfxItemSet& rSet ) SAL_OVERRIDE; - virtual bool FillItemSet( SfxItemSet& rOutSet ) SAL_OVERRIDE; + virtual bool FillItemSet( SfxItemSet* rOutSet ) SAL_OVERRIDE; void SetPageStyle( const OUString& rName ) { aStrPageStyle = rName; } void SetStyleDlg ( const ScStyleDlg* pDlg ) { pStyleDlg = pDlg; } -- cgit