diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-08-19 13:57:15 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-08-19 13:57:15 +0000 |
commit | 8915074c6393bdc5cbaa7900299122f0d4e365be (patch) | |
tree | 639dc351971b8b7661fa216ebfb41c9406fb2c0e /Source/SPConstants.m | |
parent | 6cf7762d7ae11c75698c11ffee0822b3ead24932 (diff) | |
download | sequelpro-8915074c6393bdc5cbaa7900299122f0d4e365be.tar.gz sequelpro-8915074c6393bdc5cbaa7900299122f0d4e365be.tar.bz2 sequelpro-8915074c6393bdc5cbaa7900299122f0d4e365be.zip |
• added SPFileManagerAdditions
- [(NSString*)applicationSupportDirectoryForSubDirectory:error:]
Return the application support folder of the current application for 'subDirectory'. If this folder doesn't exist it will be created. If 'subDirectory' == nil it only returns the application support folder of the current application.
• added SPThemesSupportFolder constant
Diffstat (limited to 'Source/SPConstants.m')
-rw-r--r-- | Source/SPConstants.m | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/SPConstants.m b/Source/SPConstants.m index 8fa5aadd..dd6758b1 100644 --- a/Source/SPConstants.m +++ b/Source/SPConstants.m @@ -48,11 +48,14 @@ NSString *SPBundleFileExtension = @"spfs"; NSString *SPFileExtensionSQL = @"sql"; NSString *SPColorThemeFileExtension = @"spTheme"; -// Filenames +// File names NSString *SPHTMLPrintTemplate = @"sequel-pro-print-template"; NSString *SPHTMLTableInfoPrintTemplate = @"sequel-pro-table-info-print-template"; NSString *SPHTMLHelpTemplate = @"sequel-pro-mysql-help-template"; +// Folder names +NSString *SPThemesSupportFolder = @"Themes"; + // Preference key constants // General Prefpane NSString *SPDefaultFavorite = @"DefaultFavorite"; |