From f79426e03c67189bd7436e7ae537ac962406d008 Mon Sep 17 00:00:00 2001 From: CaS Date: Tue, 12 Feb 2002 19:10:31 +0000 Subject: [PATCH] minor fix git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@12513 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 +++++ Source/NSBundleAdditions.m | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7acd9bb56..2749dacc5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-02-12 Richard Frith-Macdonald + + * Source/NSBundleAdditions.m: Fix dumb error in my last modification. + (bug report by Stephen brandon). + Mon Feb 11 14:39:03 2002 Nicola Pero Updated for change in semantics of -string method of diff --git a/Source/NSBundleAdditions.m b/Source/NSBundleAdditions.m index f69fed4ac..bb0cb1cb5 100644 --- a/Source/NSBundleAdditions.m +++ b/Source/NSBundleAdditions.m @@ -249,7 +249,7 @@ Class gmodel_class(void) } else { - fileName = [fileName stringByAppendingPathExtension: @"gmodel"]; + fileName = [base stringByAppendingPathExtension: @"gmodel"]; ext = @"gmodel"; } }