diff options
| author | Tony Arnold | 2016-11-01 09:49:55 +1100 |
|---|---|---|
| committer | Tony Arnold | 2016-11-01 09:49:55 +1100 |
| commit | e73de450add24ad5868e219ad71e43f3c02f0c21 (patch) | |
| tree | 37e1a9052a717f78583273aa51804d271fb0856c | |
| parent | 4e98f342e469af26cfd8cf6678f21c2fd2bda57f (diff) | |
| download | MASShortcut-e73de450add24ad5868e219ad71e43f3c02f0c21.tar.bz2 | |
Fix return from a NSToolTip method that expects a non-null return value
Signed-off-by: Tony Arnold <tony@thecocoabots.com>
| -rw-r--r-- | Framework/MASShortcutView.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Framework/MASShortcutView.m b/Framework/MASShortcutView.m index 8540e61..9b27a10 100644 --- a/Framework/MASShortcutView.m +++ b/Framework/MASShortcutView.m @@ -386,7 +386,7 @@ void *kUserDataHint = &kUserDataHint; else if (data == kUserDataHint) { return MASLocalizedString(@"Delete shortcut", @"Tooltip for hint button near the non-empty shortcut"); } - return nil; + return @""; } #pragma mark - Event monitoring |
