Changeset 600


Ignore:
Timestamp:
12/21/09 22:12:22 (14 years ago)
Author:
Nicholas Riley
Message:

Prototypes to pacify GCC.

Location:
trunk/Cocoa/Pester/Source
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/Cocoa/Pester/Source/NJRFSObjectSelector.m

    r587 r600  
    66static NSImage *PopupTriangleImage = nil;
    77static NSSize PopupTriangleSize;
     8
     9@interface NJRFSObjectSelector (NSOpenPanelRuntime)
     10- (void)openPanelDidEnd:(NSOpenPanel *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo;
     11@end
    812
    913@implementation NJRFSObjectSelector
  • trunk/Cocoa/Pester/Source/NJRHotKeyField.m

    r572 r600  
    2020static NSParagraphStyle *leftAlignStyle = nil, *centerAlignStyle = nil;
    2121static NSDictionary *statusAttributes = nil;
     22
     23@interface NJRHotKeyField (Private)
     24- (void)clearStatus;
     25@end
    2226
    2327@implementation NJRHotKeyField
  • trunk/Cocoa/Pester/Source/NJRQTMediaPopUpButton.m

    r591 r600  
    88
    99#import "NJRQTMediaPopUpButton.h"
     10#import "NJRFSObjectSelector.h"
    1011#import "NJRSoundManager.h"
    1112#import "QTMovie-NJRExtensions.h"
     
    2324- (BOOL)_validateWithPreview:(BOOL)doPreview;
    2425- (void)_startSoundPreview;
     26- (void)_soundPreviewDidEnd:(NSNotification *)notification;
    2527- (void)_resetPreview;
    2628- (void)_resetOutputVolume;
     29- (void)_aliasSelected:(NSMenuItem *)sender;
     30- (void)_beepSelected:(NSMenuItem *)sender;
     31- (void)_systemSoundSelected:(NSMenuItem *)sender;
     32@end
     33
     34@interface NJRQTMediaPopUpButton (NSOpenPanelRuntime)
     35- (void)openPanelDidEnd:(NSOpenPanel *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo;
    2736@end
    2837
  • trunk/Cocoa/Pester/Source/NJRReadMeController.m

    r355 r600  
    88
    99#import "NJRReadMeController.h"
     10#import "NJRSplitView.h"
    1011#import "NSString-NJRExtensions.h"
    1112
     
    7576- (void)_saveSplit;
    7677- (void)_restoreSplit;
     78- (void)readRTF:(NSString *)aPath;
    7779@end
    7880
  • trunk/Cocoa/Pester/Source/NJRVoicePopUpButton.m

    r364 r600  
    88
    99#import "NJRVoicePopUpButton.h"
     10
     11@interface NJRVoicePopUpButton (Private)
     12- (void)_previewVoice;
     13@end
    1014
    1115@implementation NJRVoicePopUpButton
  • trunk/Cocoa/Pester/Source/OACalendarView.m

    r125 r600  
    4848@end
    4949
     50@interface OACalendarView (PrivateActions)
     51
     52- (IBAction)previous:(id)sender;
     53- (IBAction)next:(id)sender;
     54
     55@end
    5056
    5157@implementation OACalendarView
  • trunk/Cocoa/Pester/Source/PSAlarms.h

    r113 r600  
    4141
    4242@end
     43
     44@interface NSObject (PSAlarmsNotifications)
     45- (void)nextAlarmDidChange:(NSNotification *)notification;
     46@end
  • trunk/Cocoa/Pester/Source/PSApplication.m

    r587 r600  
    1919#import "NJRHotKey.h"
    2020#import "NSWindowCollectionBehavior.h"
     21
     22@interface PSApplication (Private)
     23- (void)_updateDockTile:(PSTimer *)timer;
     24@end
    2125
    2226@implementation PSApplication
  • trunk/Cocoa/Pester/Source/PSDockBounceAlert.m

    r516 r600  
    1515static PSDockBounceAlert *PSDockBounceAlertShared;
    1616static NMRec nmr;
     17
     18@interface PSDockBounceAlert (Private)
     19- (void)_stopBouncing;
     20@end
    1721
    1822@implementation PSDockBounceAlert
  • trunk/Cocoa/Pester/Source/PSSnoozeUntilController.m

    r366 r600  
    1212#import "PSTimeDateEditor.h"
    1313#import "NSCalendarDate-NJRExtensions.h"
     14
     15@interface PSSnoozeUntilController (PSSnoozeUntilControllerRuntime)
     16- (void)sheetDidEnd:(NSWindow *)sheet returnCode:(int)returnCode contextInfo:(PSAlarmNotifierController *)aController;
     17@end
    1418
    1519@implementation PSSnoozeUntilController
  • trunk/Cocoa/Pester/Source/PSTimer.m

    r587 r600  
    1717@interface PSTimer (Private)
    1818+ (void)_schedule;
     19- (void)_timerExpired;
    1920@end
    2021
Note: See TracChangeset for help on using the changeset viewer.