View | Details | Raw Unified | Return to issue 50886
Collapse All | Expand All

(-)sc/source/ui/dbgui/pvlaydlg.cxx (-14 / +4 lines)
Lines 303-322 void __EXPORT ScDPLayoutDlg::Init() Link Here
303
		}
303
		}
304
	}
304
	}
305
305
306
	if ( thePivotData.nTab != MAXTAB+1 )
306
    // Output to a new sheet by default.
307
	{
307
    aLbOutPos.SelectEntryPos(1);
308
		String aStr;
308
    aEdOutPos.Disable();
309
		ScAddress( thePivotData.nCol,
309
    aRbOutPos.Disable();
310
				   thePivotData.nRow,
311
				   thePivotData.nTab ).Format( aStr, STD_FORMAT, pDoc, pDoc->GetAddressConvention() );
312
		aEdOutPos.SetText( aStr );
313
		EdModifyHdl(0);
314
	}
315
	else
316
	{
317
		aLbOutPos.SelectEntryPos( aLbOutPos.GetEntryCount()-1 );
318
		SelAreaHdl(NULL);
319
	}
320
310
321
	aBtnIgnEmptyRows.Check( thePivotData.bIgnoreEmptyRows );
311
	aBtnIgnEmptyRows.Check( thePivotData.bIgnoreEmptyRows );
322
	aBtnDetectCat   .Check( thePivotData.bDetectCategories );
312
	aBtnDetectCat   .Check( thePivotData.bDetectCategories );

Return to issue 50886