mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
Fix for Enrico
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14629 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4c709da872
commit
738214a910
2 changed files with 9 additions and 3 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,9 @@
|
|||
2002-10-02 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSWorkspace.m: ([-getInfoForFile:application:type:])
|
||||
Make an exception for directories without file extensions ... never
|
||||
return plain type for them even if apps claim to open them.
|
||||
|
||||
Wed Oct 2 11:26:21 2002 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* Source/NSTextView.m
|
||||
|
@ -6,9 +12,9 @@ Wed Oct 2 11:26:21 2002 Nicola Pero <n.pero@mi.flashnet.it>
|
|||
and textDidBeginEditingNotification unless the textview is already
|
||||
first responder (Patch by David Ayers <d.ayers@inode.at>).
|
||||
|
||||
2002-10-01 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
2002-10-02 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSWorkspace.m: ([-gtInfoForFile:application:type:])
|
||||
* Source/NSWorkspace.m: ([-getInfoForFile:application:type:])
|
||||
Try to return a plain file type for directories which are openable
|
||||
by some app.
|
||||
|
||||
|
|
|
@ -646,7 +646,7 @@ inFileViewerRootedAtPath: (NSString*)rootFullpath
|
|||
{
|
||||
*type = NSPlainFileType;
|
||||
}
|
||||
else if (*appName != nil)
|
||||
else if (*appName != nil && [extension length] > 0)
|
||||
{
|
||||
*type = NSPlainFileType;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue