mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 14:07:03 +00:00
- Fix recentAutosaveName decoding (setter was needed) - Fix a bug where 2 search fields in the same app would receive the same recentSearches update when recentAutosaveName set. - Update recentAutosaveName to use the new CPUserDefaults class instead of CPCookie. - searchMenuTemplate nib2cib decoding. searchMenutemplate is just an outlet, it's automatically connected. - Removed CPSearchFieldSeparatorItemTag - Updated Test app with a nib2cibed search field. Ability to set some options for the regular search field. - Style and white space.
19 lines
304 B
Plaintext
19 lines
304 B
Plaintext
/*
|
|
* AppController.j
|
|
* CPSearchField
|
|
*
|
|
* Created by You on November 27, 2010.
|
|
* Copyright 2010, Your Company All rights reserved.
|
|
*/
|
|
|
|
@import <Foundation/Foundation.j>
|
|
@import <AppKit/AppKit.j>
|
|
|
|
@import "AppController.j"
|
|
|
|
|
|
function main(args, namedArgs)
|
|
{
|
|
CPApplicationMain(args, namedArgs);
|
|
}
|