mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-14 15:57:12 -06:00
fixed compiler warnings
This commit is contained in:
@@ -312,7 +312,7 @@ debug*/
|
|||||||
if( window instanceof RootPaneContainer ) {
|
if( window instanceof RootPaneContainer ) {
|
||||||
JLayeredPane layeredPane = ((RootPaneContainer)window).getLayeredPane();
|
JLayeredPane layeredPane = ((RootPaneContainer)window).getLayeredPane();
|
||||||
setSize( layeredPane.getSize() );
|
setSize( layeredPane.getSize() );
|
||||||
layeredPane.add( this, new Integer( JLayeredPane.POPUP_LAYER + 1 ) );
|
layeredPane.add( this, Integer.valueOf( JLayeredPane.POPUP_LAYER + 1 ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -151,9 +151,9 @@ import com.formdev.flatlaf.util.UIScale;
|
|||||||
*
|
*
|
||||||
* @uiDefault FileChooser.shortcuts.buttonSize Dimension optional; default is 84,64
|
* @uiDefault FileChooser.shortcuts.buttonSize Dimension optional; default is 84,64
|
||||||
* @uiDefault FileChooser.shortcuts.iconSize Dimension optional; default is 32,32
|
* @uiDefault FileChooser.shortcuts.iconSize Dimension optional; default is 32,32
|
||||||
* @uiDefault FileChooser.shortcuts.filesFunction Function<File[], File[]>
|
* @uiDefault FileChooser.shortcuts.filesFunction Function<File[], File[]>
|
||||||
* @uiDefault FileChooser.shortcuts.displayNameFunction Function<File, String>
|
* @uiDefault FileChooser.shortcuts.displayNameFunction Function<File, String>
|
||||||
* @uiDefault FileChooser.shortcuts.iconFunction Function<File, Icon>
|
* @uiDefault FileChooser.shortcuts.iconFunction Function<File, Icon>
|
||||||
*
|
*
|
||||||
* @author Karl Tauber
|
* @author Karl Tauber
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user