X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=otk%2Ffocuswidget.cc;h=a5d2696d6036dd1caeb4c7ed1a685da33fbcba66;hb=b34824a4e2ddc0247099fa1b3952de426bfde05b;hp=f5b176bfc4bc1bd90dde1dc3fbbce33a9248e3b8;hpb=70eb03ad50e1a71fd64c8cb1ebabbff311850553;p=chaz%2Fopenbox diff --git a/otk/focuswidget.cc b/otk/focuswidget.cc index f5b176bf..a5d2696d 100644 --- a/otk/focuswidget.cc +++ b/otk/focuswidget.cc @@ -12,8 +12,8 @@ OtkFocusWidget::OtkFocusWidget(OtkWidget *parent, Direction direction) : OtkWidget(parent, direction), _unfocus_texture(0), _unfocus_bcolor(0) { _focused = true; - _focus_texture = parent->getTexture(); - _focus_bcolor = parent->getBorderColor(); + _focus_texture = parent->texture(); + _focus_bcolor = parent->borderColor(); } OtkFocusWidget::~OtkFocusWidget() @@ -50,7 +50,7 @@ void OtkFocusWidget::unfocus(void) OtkWidget::setTexture(_unfocus_texture); OtkWidget::update(); - OtkWidget::OtkWidgetList children = OtkWidget::getChildren(); + OtkWidget::OtkWidgetList children = OtkWidget::children(); OtkWidget::OtkWidgetList::iterator it = children.begin(), end = children.end();