Skip to content
This repository was archived by the owner on Sep 16, 2022. It is now read-only.

Remove trailing whitespaces #203

Merged
merged 1 commit into from
Mar 28, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Examples/ContactsSample/ContactsSampleAppController.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
@implementation ContactsSampleAppController

- (void)applicationWillFinishLaunching:(NSNotification *)notifcation {

ContactsSampleWindowController* windowController = [ContactsSampleWindowController sharedContactsSampleWindowController];
[windowController showWindow:self];

}

- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
Expand Down
18 changes: 9 additions & 9 deletions Examples/ContactsSample/ContactsSampleWindowController.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,42 +26,42 @@
@interface ContactsSampleWindowController : NSWindowController {
IBOutlet NSTextField *mUsernameField;
IBOutlet NSSecureTextField *mPasswordField;

IBOutlet NSButton *mShowDeletedCheckbox;
IBOutlet NSButton *mMyContactsCheckbox;
IBOutlet NSComboBox *mPropertyNameField;
IBOutlet NSButton *mGetContactsButton;

IBOutlet NSSegmentedControl *mFeedSegmentedControl;
IBOutlet NSTableView *mFeedTable;
IBOutlet NSProgressIndicator *mFeedProgressIndicator;
IBOutlet NSTextView *mFeedResultTextField;
IBOutlet NSButton *mFeedCancelButton;
IBOutlet NSButton *mSortFeedCheckbox;

IBOutlet NSImageView *mContactImageView;
IBOutlet NSButton *mSetContactImageButton;
IBOutlet NSButton *mDeleteContactImageButton;
IBOutlet NSProgressIndicator *mSetContactImageProgressIndicator;

IBOutlet NSButton *mAddContactButton;
IBOutlet NSTextField *mAddTitleField;
IBOutlet NSTextField *mAddEmailField;
IBOutlet NSButton *mDeleteContactButton;
IBOutlet NSButton *mDeleteAllButton;

IBOutlet NSSegmentedControl *mEntrySegmentedControl;

IBOutlet NSTableView *mEntryTable;
IBOutlet NSTextView *mEntryResultTextField;

IBOutlet NSButton *mAddEntryButton;
IBOutlet NSButton *mDeleteEntryButton;
IBOutlet NSButton *mEditEntryButton;
IBOutlet NSButton *mMakePrimaryEntryButton;
IBOutlet NSTextField *mServiceURLField;

IBOutlet NSTextField *mServiceURLField;

GDataFeedContact *mContactFeed;
GDataServiceTicket *mContactFetchTicket;
NSError *mContactFetchError;
Expand Down
Loading