mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
Some minor fixes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4784 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4638341453
commit
33c1be1a1f
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
Wed Sep 1 9:28:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* Tools/GNUmakefile.preamble: patch by doko@cs.tu-berlin.de so that
|
||||
make_services is linked without the gste-gui library.
|
||||
* Tools/make_services.m: minor fixes to get rid of some compiler
|
||||
warnings - remove unused variables etc.
|
||||
|
||||
Wed Sep 1 9:17:00 1999 n.pero@mi.flashnet.it
|
||||
* Source/NSBox.m: (-initWithFrame:) changed default border type to
|
||||
NSGrooveBorder (as in MacOS-X). Resize content view to fit the box.
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
#include <Foundation/NSDebug.h>
|
||||
#include <Foundation/NSDistributedLock.h>
|
||||
#include <Foundation/NSAutoreleasePool.h>
|
||||
#include <Foundation/NSPathUtilities.h>
|
||||
#include <Foundation/NSSerialization.h>
|
||||
|
||||
static void scanDirectory(NSMutableDictionary *services, NSString *path);
|
||||
|
@ -347,7 +348,6 @@ static void addExtensionsForApplication(NSDictionary *info, NSString *app)
|
|||
while (i-- > 0)
|
||||
{
|
||||
NSDictionary *t;
|
||||
NSString *s;
|
||||
NSArray *a1;
|
||||
id o1 = [a0 objectAtIndex: i];
|
||||
unsigned int j;
|
||||
|
@ -460,7 +460,6 @@ scanDirectory(NSMutableDictionary *services, NSString *path)
|
|||
if ([mgr fileExistsAtPath: newPath isDirectory: &isDir] && isDir)
|
||||
{
|
||||
NSString *oldPath;
|
||||
NSString *infPath;
|
||||
NSBundle *bundle;
|
||||
NSDictionary *info;
|
||||
|
||||
|
|
Loading…
Reference in a new issue