From cd6f82c2c9f1446fc53ace43de1d8fd8e6cd4503 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 13 Aug 2002 17:03:26 +0000 Subject: [PATCH] fix Class mangling when compiling multipe source files to objects --- tools/qfcc/source/class.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/qfcc/source/class.c b/tools/qfcc/source/class.c index c06ff5769..02bb3475f 100644 --- a/tools/qfcc/source/class.c +++ b/tools/qfcc/source/class.c @@ -643,4 +643,6 @@ clear_classes (void) Hash_FlushTable (protocol_hash); if (category_hash) Hash_FlushTable (category_hash); + if (class_hash) + class_Class.super_class = get_class ("Object", 1); }