mirror of
https://github.com/munki/munki.git
synced 2026-04-23 13:29:26 -05:00
More doc strings for methods
This commit is contained in:
@@ -35,10 +35,11 @@ class MSUAppDelegate(NSObject):
|
||||
statusController = IBOutlet()
|
||||
|
||||
def applicationShouldTerminate_(self, sender):
|
||||
# called if user selects 'Quit' from menu
|
||||
'''Called if user selects 'Quit' from menu'''
|
||||
return self.mainWindowController.appShouldTerminate()
|
||||
|
||||
def applicationDidFinishLaunching_(self, sender):
|
||||
'''NSApplication delegate method called at launch'''
|
||||
# Prevent automatic relaunching at login on Lion+
|
||||
if NSApp.respondsToSelector_('disableRelaunchOnLogin'):
|
||||
NSApp.disableRelaunchOnLogin()
|
||||
|
||||
Reference in New Issue
Block a user