]> git.sesse.net Git - vlc/commitdiff
macosx: use isEqualToString instead of isEqual
authorDavid Fuhrmann <dfuhrmann@videolan.org>
Wed, 10 Sep 2014 17:00:15 +0000 (19:00 +0200)
committerDavid Fuhrmann <dfuhrmann@videolan.org>
Wed, 10 Sep 2014 17:04:57 +0000 (19:04 +0200)
modules/gui/macosx/VideoEffects.m

index 050ef98a767148987f4a017cf61c690726622717..46c9a155190b28d7782d634f75d72206f59e5e1d 100644 (file)
@@ -620,7 +620,7 @@ static VLCVideoEffects *_o_sharedInstance = nil;
     tempString = B64DecNSStr([items objectAtIndex:2]);
     /* enable another round of new filters */
     char *psz_current_splitter = var_GetString(pl_Get(p_intf), "video-splitter");
-    bool b_filter_changed = ![tempString isEqual:toNSStr(psz_current_splitter)];
+    bool b_filter_changed = ![tempString isEqualToString:toNSStr(psz_current_splitter)];
     free(psz_current_splitter);
 
     if (b_filter_changed) {