< prev index next >

src/java.desktop/unix/classes/sun/awt/X11/XListPeer.java

Print this page

        

*** 1950,1960 **** /** * Paint the horizontal scrollbar to the screen * * @param g the graphics context to draw into - * @param colors the colors used to draw the scrollbar * @param paintAll paint the whole scrollbar if true, just the thumb if false */ void paintHorScrollbar(Graphics g, boolean paintAll) { int w = getListWidth(); paintScrollBar(hsb, g, 0, height - (SCROLLBAR_WIDTH), w, SCROLLBAR_WIDTH, paintAll); --- 1950,1959 ----
*** 1962,1972 **** /** * Paint the vertical scrollbar to the screen * * @param g the graphics context to draw into - * @param colors the colors used to draw the scrollbar * @param paintAll paint the whole scrollbar if true, just the thumb if false */ void paintVerScrollbar(Graphics g, boolean paintAll) { int h = height - (hsbVis ? (SCROLLBAR_AREA-2) : 0); paintScrollBar(vsb, g, width - SCROLLBAR_WIDTH, 0, SCROLLBAR_WIDTH - 2, h, paintAll); --- 1961,1970 ----
< prev index next >