aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPFavoriteNode.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2011-03-13 18:50:40 +0000
committerstuconnolly <stuart02@gmail.com>2011-03-13 18:50:40 +0000
commit1632c45fdd9d0b8fe1e0aef3e891e8bd5704df29 (patch)
treef2fc34195718108f7770900994443931b6b8807e /Source/SPFavoriteNode.h
parentc2cf0e39c3c59c3548bf39f0835ac552cdcd23f4 (diff)
downloadsequelpro-1632c45fdd9d0b8fe1e0aef3e891e8bd5704df29.tar.gz
sequelpro-1632c45fdd9d0b8fe1e0aef3e891e8bd5704df29.tar.bz2
sequelpro-1632c45fdd9d0b8fe1e0aef3e891e8bd5704df29.zip
Fix issue related to dragging a node to a group node that is being renamed as well as fix all warnings related to the connection outlinew view.
Diffstat (limited to 'Source/SPFavoriteNode.h')
-rw-r--r--Source/SPFavoriteNode.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/Source/SPFavoriteNode.h b/Source/SPFavoriteNode.h
index a77e7dc0..ecd8aa28 100644
--- a/Source/SPFavoriteNode.h
+++ b/Source/SPFavoriteNode.h
@@ -32,18 +32,16 @@
*/
@interface SPFavoriteNode : NSObject <NSCopying, NSCoding>
{
- NSDictionary *nodeFavorite;
+ NSMutableDictionary *nodeFavorite;
}
/**
* @property nodeFavorite The actual favorite dictionary
*/
-@property (readwrite, retain) NSDictionary *nodeFavorite;
+@property (readwrite, retain) NSMutableDictionary *nodeFavorite;
-- (id)initWithDictionary:(NSDictionary *)dictionary;
+- (id)initWithDictionary:(NSMutableDictionary *)dictionary;
-+ (SPFavoriteNode *)favoriteNodeWithDictionary:(NSDictionary *)dictionary;
-
-- (NSDictionary *)dictionaryRepresentation;
++ (SPFavoriteNode *)favoriteNodeWithDictionary:(NSMutableDictionary *)dictionary;
@end