home *** CD-ROM | disk | FTP | other *** search
- /* MiscNoSelInspector.m
- *
- * This default inspector comes up when there is a No Selection.
- *
- * For more interface-info see the header file. In depth information
- * can be found here in the source-code.
- *
- * Written by: Thomas Engel
- * Created: 09.02.1994 (Copyleft)
- * Last modified: 09.02.1994
- */
-
- #import <misckit/misckit.h>
-
- @implementation MiscNoSelInspector
-
- - (BOOL)doesHandleSelection
- {
- if( [self selectionCount] < 1 )
- return YES;
- else return NO;
- }
-
- @end
-
- /*
- * History: 09.02.1994 First code entered.
- *
- *
- * Bugs: - No;
- */