Index: Source/NSCell.m
===================================================================
--- Source/NSCell.m     (revision 26798)
+++ Source/NSCell.m     (working copy)
@@ -312,7 +312,6 @@
 - (void) setObjectValue: (id)object 
 {
   id newContents;
-  
   ASSIGN (_object_value, object);
   
   if (_formatter == nil) 
Index: Headers/AppKit/NSCell.h
===================================================================
--- Headers/AppKit/NSCell.h     (revision 26798)
+++ Headers/AppKit/NSCell.h     (working copy)
@@ -496,8 +496,22 @@
 //
 // Function which should be somewhere else
 //
-inline NSSize 
-_sizeForBorderType (NSBorderType aType);
+inline extern NSSize 
+_sizeForBorderType (NSBorderType aType)
+{
+  // Returns the size of a border
+  switch (aType)
+    {
+      case NSLineBorder:
+        return NSMakeSize(1, 1);
+      case NSGrooveBorder:
+      case NSBezelBorder:
+        return NSMakeSize(2, 2);
+      case NSNoBorder: 
+      default:
+        return NSZeroSize;
+    }
+}
 
 #endif // _GNUstep_H_NSCell
 

