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

(-)sc/source/ui/dbgui/dapidata.cxx (-2 / +2 lines)
Lines 68-77 Link Here
68
    aFlFrame        ( this, ScResId( FL_FRAME ) ),
68
    aFlFrame        ( this, ScResId( FL_FRAME ) ),
69
	aFtDatabase     ( this, ScResId( FT_DATABASE ) ),
69
	aFtDatabase     ( this, ScResId( FT_DATABASE ) ),
70
	aLbDatabase     ( this, ScResId( LB_DATABASE ) ),
70
	aLbDatabase     ( this, ScResId( LB_DATABASE ) ),
71
	aFtType         ( this, ScResId( FT_OBJTYPE ) ),
72
	aLbType         ( this, ScResId( LB_OBJTYPE ) ),
71
	aFtObject       ( this, ScResId( FT_OBJECT ) ),
73
	aFtObject       ( this, ScResId( FT_OBJECT ) ),
72
	aCbObject       ( this, ScResId( CB_OBJECT ) ),
74
	aCbObject       ( this, ScResId( CB_OBJECT ) ),
73
	aFtType         ( this, ScResId( FT_OBJTYPE ) ),
74
	aLbType         ( this, ScResId( LB_OBJTYPE ) ),
75
	aBtnOk          ( this, ScResId( BTN_OK ) ),
75
	aBtnOk          ( this, ScResId( BTN_OK ) ),
76
	aBtnCancel      ( this, ScResId( BTN_CANCEL ) ),
76
	aBtnCancel      ( this, ScResId( BTN_CANCEL ) ),
77
	aBtnHelp        ( this, ScResId( BTN_HELP ) )
77
	aBtnHelp        ( this, ScResId( BTN_HELP ) )
(-)sc/source/ui/dbgui/dapitype.src (-5 / +5 lines)
Lines 247-253 Link Here
247
247
248
	FixedText FT_OBJECT
248
	FixedText FT_OBJECT
249
	{
249
	{
250
        Pos = MAP_APPFONT ( 12 , 30 ) ;
250
        Pos = MAP_APPFONT ( 12 , 46 ) ;
251
        Size = MAP_APPFONT ( 52 , 8 ) ;
251
        Size = MAP_APPFONT ( 52 , 8 ) ;
252
		Text [ en-US ] = "Data so~urce";
252
		Text [ en-US ] = "Data so~urce";
253
	};
253
	};
Lines 255-261 Link Here
255
	{
255
	{
256
	    HelpID = "sc:ComboBox:RID_SCDLG_DAPIDATA:CB_OBJECT";
256
	    HelpID = "sc:ComboBox:RID_SCDLG_DAPIDATA:CB_OBJECT";
257
		Border = TRUE ;
257
		Border = TRUE ;
258
        Pos = MAP_APPFONT ( 66 , 28 ) ;
258
        Pos = MAP_APPFONT ( 66 , 44 ) ;
259
        Size = MAP_APPFONT ( 110 , 80 ) ;
259
        Size = MAP_APPFONT ( 110 , 80 ) ;
260
		TabStop = TRUE ;
260
		TabStop = TRUE ;
261
		DropDown = TRUE ;
261
		DropDown = TRUE ;
Lines 263-269 Link Here
263
263
264
	FixedText FT_OBJTYPE
264
	FixedText FT_OBJTYPE
265
	{
265
	{
266
        Pos = MAP_APPFONT ( 12 , 46 ) ;
266
        Pos = MAP_APPFONT ( 12 , 30 ) ;
267
        Size = MAP_APPFONT ( 52 , 8 ) ;
267
        Size = MAP_APPFONT ( 52 , 8 ) ;
268
		Text [ en-US ] = "~Type";
268
		Text [ en-US ] = "~Type";
269
	};
269
	};
Lines 271-283 Link Here
271
	{
271
	{
272
	    HelpID = "sc:ListBox:RID_SCDLG_DAPIDATA:LB_OBJTYPE";
272
	    HelpID = "sc:ListBox:RID_SCDLG_DAPIDATA:LB_OBJTYPE";
273
		Border = TRUE ;
273
		Border = TRUE ;
274
        Pos = MAP_APPFONT ( 66 , 44 ) ;
274
        Pos = MAP_APPFONT ( 66 , 28 ) ;
275
        Size = MAP_APPFONT ( 110 , 80 ) ;
275
        Size = MAP_APPFONT ( 110 , 80 ) ;
276
		TabStop = TRUE ;
276
		TabStop = TRUE ;
277
		DropDown = TRUE ;
277
		DropDown = TRUE ;
278
	StringList [ en-US ] =
278
	StringList [ en-US ] =
279
	{
279
	{
280
			< "Sheet" ; Default ; > ;
280
		< "Table" ; Default ; > ;
281
		< "Query" ; Default ; > ;
281
		< "Query" ; Default ; > ;
282
		< "Sql" ; Default ; > ;
282
		< "Sql" ; Default ; > ;
283
		< "Sql [Native]" ; Default ; > ;
283
		< "Sql [Native]" ; Default ; > ;
(-)sc/source/ui/inc/dapidata.hxx (-2 / +2 lines)
Lines 43-52 Link Here
43
    FixedLine       aFlFrame;
43
    FixedLine       aFlFrame;
44
	FixedText		aFtDatabase;
44
	FixedText		aFtDatabase;
45
	ListBox			aLbDatabase;
45
	ListBox			aLbDatabase;
46
	FixedText		aFtType;
47
	ListBox			aLbType;
46
	FixedText		aFtObject;
48
	FixedText		aFtObject;
47
	ComboBox		aCbObject;
49
	ComboBox		aCbObject;
48
	FixedText		aFtType;
49
	ListBox			aLbType;
50
	OKButton		aBtnOk;
50
	OKButton		aBtnOk;
51
	CancelButton	aBtnCancel;
51
	CancelButton	aBtnCancel;
52
	HelpButton		aBtnHelp;
52
	HelpButton		aBtnHelp;

Return to issue 105692