From 9f0292314dc414b8f0294ddd7a87d0d69d9d5960 Mon Sep 17 00:00:00 2001 From: Alex Wilson Date: Wed, 28 Dec 2011 22:37:59 -0700 Subject: [PATCH] Fix typo in BLayout::AllArchived(). BLayout::AllArchived() was forwarding to BArchivable, skipping BLayoutItem. --- src/kits/interface/Layout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/interface/Layout.cpp b/src/kits/interface/Layout.cpp index 75d3932bdb..bce47bc403 100644 --- a/src/kits/interface/Layout.cpp +++ b/src/kits/interface/Layout.cpp @@ -456,7 +456,7 @@ BLayout::Archive(BMessage* into, bool deep) const status_t BLayout::AllArchived(BMessage* archive) const { - return BArchivable::AllArchived(archive); + return BLayoutItem::AllArchived(archive); }