home *** CD-ROM | disk | FTP | other *** search
- //=============================================================================
- //
- // Copyright (C) 1995, 1996 by Paul S. McCarthy and Eric Sunshine.
- // Written by Paul S. McCarthy and Eric Sunshine.
- // All Rights Reserved.
- //
- // This notice may not be removed from this source code.
- //
- // This object is included in the MiscKit by permission from the authors
- // and its use is governed by the MiscKit license, found in the file
- // "License.rtf" in the MiscKit distribution. Please refer to that file
- // for a list of all applicable permissions and restrictions.
- //
- //=============================================================================
- //-----------------------------------------------------------------------------
- // MiscRowView.M
- //
- // View class for the row labels on an MiscTableScroll.
- //
- //-----------------------------------------------------------------------------
- //-----------------------------------------------------------------------------
- // $Id: MiscRowView.M,v 1.2 96/04/30 05:38:41 sunshine Exp $
- // $Log: MiscRowView.M,v $
- // Revision 1.2 96/04/30 05:38:41 sunshine
- // Ported to OpenStep 4.0 for Mach PR2.
- //
- //-----------------------------------------------------------------------------
- #import "MiscRowView.h"
-
- @implementation MiscRowView
-
- //-----------------------------------------------------------------------------
- // - initWithFrame:scroll:info:
- //-----------------------------------------------------------------------------
- - initWithFrame: (NSRect) frameRect
- scroll: (MiscTableScroll*) i_scroll
- info: (MiscTableBorder*) i_info
- {
- [super initWithFrame:frameRect scroll:i_scroll info:i_info
- type:MISC_ROW_BORDER_VIEW];
- return self;
- }
-
- @end
-