Remove SkinTheme::less_bevel()

This commit is contained in:
David Capello 2013-01-06 14:54:19 -03:00
parent 76c4fd8243
commit b1fa72b585
2 changed files with 0 additions and 9 deletions

View File

@ -2159,14 +2159,6 @@ void SkinTheme::drawProgressBar(BITMAP* bmp, int x1, int y1, int x2, int y2, flo
ui::to_system(getColor(ThemeColor::Background)));
}
void SkinTheme::less_bevel(int *bevel)
{
if (bevel[0] > 0) --bevel[0];
if (bevel[1] > 0) --bevel[1];
if (bevel[2] > 0) --bevel[2];
if (bevel[3] > 0) --bevel[3];
}
void SkinTheme::paintIcon(Widget* widget, Graphics* g, IButtonIcon* iconInterface, int x, int y)
{
BITMAP* icon_bmp = NULL;

View File

@ -188,7 +188,6 @@ private:
bool fill_bg, ui::Widget* widget, const gfx::Rect& rc,
int selected_offset);
void draw_entry_caret(ui::Entry* widget, int x, int y);
void less_bevel(int *bevel);
void paintIcon(ui::Widget* widget, ui::Graphics* g, ui::IButtonIcon* iconInterface, int x, int y);