replace depreciated plib symbols with their new forms
This commit is contained in:
parent
171a93869b
commit
533201c7a0
3 changed files with 8 additions and 8 deletions
|
@ -852,7 +852,7 @@ void NewTgtAirportInit()
|
||||||
|
|
||||||
TgtAptDialogWPList = new puListBox ( 50, 130, 300, 320 ) ;
|
TgtAptDialogWPList = new puListBox ( 50, 130, 300, 320 ) ;
|
||||||
TgtAptDialogWPList -> setLabel ( "Flight Plan" );
|
TgtAptDialogWPList -> setLabel ( "Flight Plan" );
|
||||||
TgtAptDialogWPList -> setLabelPlace ( PUPLACE_ABOVE ) ;
|
TgtAptDialogWPList -> setLabelPlace ( PUPLACE_TOP_LEFT ) ;
|
||||||
TgtAptDialogWPList -> setStyle ( -PUSTYLE_SMALL_SHADED ) ;
|
TgtAptDialogWPList -> setStyle ( -PUSTYLE_SMALL_SHADED ) ;
|
||||||
TgtAptDialogWPList -> setValue ( 0 ) ;
|
TgtAptDialogWPList -> setValue ( 0 ) ;
|
||||||
|
|
||||||
|
@ -872,7 +872,7 @@ void NewTgtAirportInit()
|
||||||
|
|
||||||
TgtAptDialogInput = new puInput (50, 70, 300, 100);
|
TgtAptDialogInput = new puInput (50, 70, 300, 100);
|
||||||
TgtAptDialogInput -> setLabel ( NewTgtAirportLabel );
|
TgtAptDialogInput -> setLabel ( NewTgtAirportLabel );
|
||||||
TgtAptDialogInput -> setLabelPlace ( PUPLACE_ABOVE ) ;
|
TgtAptDialogInput -> setLabelPlace ( PUPLACE_TOP_LEFT ) ;
|
||||||
TgtAptDialogInput -> setValue (NewTgtAirportId);
|
TgtAptDialogInput -> setValue (NewTgtAirportId);
|
||||||
TgtAptDialogInput -> acceptInput();
|
TgtAptDialogInput -> acceptInput();
|
||||||
|
|
||||||
|
|
|
@ -379,7 +379,7 @@ fgPropPicker::fgPropPicker ( int x, int y, int w, int h, int arrows,
|
||||||
|
|
||||||
list_box = new puListBox ( 10, 40, w-40, h-60 ) ;
|
list_box = new puListBox ( 10, 40, w-40, h-60 ) ;
|
||||||
list_box -> setLabel ( title );
|
list_box -> setLabel ( title );
|
||||||
list_box -> setLabelPlace ( PUPLACE_ABOVE ) ;
|
list_box -> setLabelPlace ( PUPLACE_TOP_LEFT ) ;
|
||||||
list_box -> setStyle ( -PUSTYLE_SMALL_SHADED ) ;
|
list_box -> setStyle ( -PUSTYLE_SMALL_SHADED ) ;
|
||||||
list_box -> setUserData ( this ) ;
|
list_box -> setUserData ( this ) ;
|
||||||
list_box -> setCallback ( handle_select ) ;
|
list_box -> setCallback ( handle_select ) ;
|
||||||
|
|
|
@ -129,9 +129,9 @@ FloatSlider::FloatSlider ( int x, int y, int sz, float f, const char *title,
|
||||||
setCBMode ( PUSLIDER_DELTA ) ;
|
setCBMode ( PUSLIDER_DELTA ) ;
|
||||||
strcpy ( _title, title);
|
strcpy ( _title, title);
|
||||||
setLabel ( _title );
|
setLabel ( _title );
|
||||||
setLabelPlace ( PUPLACE_LEFT );
|
setLabelPlace ( PUPLACE_LOWER_LEFT );
|
||||||
setLegend(_text);
|
setLegend(_text);
|
||||||
// setLegendPlace( PUPLACE_RIGHT );
|
// setLegendPlace( PUPLACE_LOWER_RIGHT );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -211,9 +211,9 @@ FloatDial::FloatDial ( int x, int y, int sz, float f, const char *title,
|
||||||
setCBMode ( PUSLIDER_DELTA ) ;
|
setCBMode ( PUSLIDER_DELTA ) ;
|
||||||
strcpy ( _title, title);
|
strcpy ( _title, title);
|
||||||
setLabel ( _title );
|
setLabel ( _title );
|
||||||
setLabelPlace ( PUPLACE_LEFT );
|
setLabelPlace ( PUPLACE_LOWER_LEFT );
|
||||||
setLegend(_text);
|
setLegend(_text);
|
||||||
// setLegendPlace( PUPLACE_RIGHT );
|
// setLegendPlace( PUPLACE_LOWER_RIGHT );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -329,7 +329,7 @@ sgVec3Slider::sgVec3Slider ( int x, int y, sgVec3 cart, const char *title,
|
||||||
|
|
||||||
new puFrame ( 0, 0, DialogWidth, DialogHeight );
|
new puFrame ( 0, 0, DialogWidth, DialogHeight );
|
||||||
|
|
||||||
setLabelPlace( PUPLACE_DEFAULT /*PUPLACE_CENTERED*/ );
|
setLabelPlace( PUPLACE_DEFAULT /*PUPLACE_CENTERED_CENTERED*/ );
|
||||||
setLabel( Label );
|
setLabel( Label );
|
||||||
|
|
||||||
/* heading */
|
/* heading */
|
||||||
|
|
Loading…
Add table
Reference in a new issue