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

(-)../src680-m72.bak/sc/source/ui/dbgui/pvlaydlg.cxx (-3 / +15 lines)
Lines 256-264 Link Here
256
256
257
	ScRange inRange;
257
	ScRange inRange;
258
	String inString;
258
	String inString;
259
	inRange = xDlgDPObject->GetSheetDesc()->aSourceRange;
259
	if (xDlgDPObject->GetSheetDesc())
260
	inRange.Format( inString, STD_FORMAT, pDoc);
260
	{
261
	aEdInPos.SetText(inString);
261
		aEdInPos.Enable();
262
		aRbInPos.Enable();
263
		inRange = xDlgDPObject->GetSheetDesc()->aSourceRange;
264
		inRange.Format( inString, STD_FORMAT, pDoc);
265
		aEdInPos.SetText(inString);
266
	}
267
	else 
268
	{
269
		/* Data is not reachable, so could be a remote database */
270
		aEdInPos.Disable();
271
		aRbInPos.Disable();
272
		
273
	}
262
	
274
	
263
    aSlider.SetPageSize( PAGE_SIZE );
275
    aSlider.SetPageSize( PAGE_SIZE );
264
    aSlider.SetVisibleSize( PAGE_SIZE );
276
    aSlider.SetVisibleSize( PAGE_SIZE );
(-)../src680-m72.bak/sc/source/ui/view/cellsh2.cxx (-1 lines)
Lines 598-604 Link Here
598
					}
598
					}
599
599
600
					const ScDPObject* pDPObject = pTabViewShell->GetDialogDPObject();
600
					const ScDPObject* pDPObject = pTabViewShell->GetDialogDPObject();
601
					ScRange aR = pDPObject->GetSheetDesc()->aSourceRange;
602
601
603
					if ( pDPObject )
602
					if ( pDPObject )
604
					{
603
					{

Return to issue 23658