interface kit: added compatibility symbols for GCC4

* InvalidateLayout method for BBox, BButton, BCheckBox, BMenuField,
  BScrollView, BSlider, BStringView, BTextControl.
This commit is contained in:
Jerome Duval
2012-02-26 10:36:04 +01:00
parent 44c991efdb
commit 8adaa6c544
8 changed files with 19 additions and 44 deletions
+2 -6
View File
@@ -624,11 +624,9 @@ BCheckBox::operator=(const BCheckBox &)
}
#if __GNUC__ == 2
extern "C" void
InvalidateLayout__9BCheckBoxb(BCheckBox* box, bool descendants)
B_IF_GCC_2(InvalidateLayout__9BCheckBoxb, _ZN9BCheckBox16InvalidateLayoutEb)(
BCheckBox* box, bool descendants)
{
perform_data_layout_invalidated data;
data.descendants = descendants;
@@ -636,5 +634,3 @@ InvalidateLayout__9BCheckBoxb(BCheckBox* box, bool descendants)
box->Perform(PERFORM_CODE_LAYOUT_INVALIDATED, &data);
}
#endif