mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
Previously the call of the delegate method of a CPTableView weren't call in the good order, specially the selecting method. Now it works as in Cocoa. Fixed typos Test app in Tests/Manual/TableTest/DelegateSelectionTest
19 lines
311 B
Plaintext
Executable File
19 lines
311 B
Plaintext
Executable File
/*
|
|
* AppController.j
|
|
* DelegateSelectionTest
|
|
*
|
|
* Created by You on October 16, 2013.
|
|
* Copyright 2013, Your Company All rights reserved.
|
|
*/
|
|
|
|
@import <Foundation/Foundation.j>
|
|
@import <AppKit/AppKit.j>
|
|
|
|
@import "AppController.j"
|
|
|
|
|
|
function main(args, namedArgs)
|
|
{
|
|
CPApplicationMain(args, namedArgs);
|
|
}
|