Skip to content

Commit

Permalink
Merge pull request #528 from sfsam/master
Browse files Browse the repository at this point in the history
Use proper NSImageName constant NSImageNameAdvanced in Preferences panel
  • Loading branch information
splhack authored Aug 8, 2017
2 parents 2a33867 + 50badad commit 03750a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MacVim/MMPreferenceController.m
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static void loadSymbols()
void *ptr;
if ((ptr = dlsym(RTLD_DEFAULT, "NSImageNamePreferencesGeneral")) != NULL)
nsImageNamePreferencesGeneral = *(NSString**)ptr;
if ((ptr = dlsym(RTLD_DEFAULT, "NSImageNamePreferencesAdvanced")) != NULL)
if ((ptr = dlsym(RTLD_DEFAULT, "NSImageNameAdvanced")) != NULL)
nsImageNamePreferencesAdvanced = *(NSString**)ptr;
}

Expand Down

0 comments on commit 03750a9

Please sign in to comment.