You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once again compilation on 10.5 was broken hey we survived a long time without this. :)
The culprit is da471f1 which teaches Quicksilver how to get recent documents with 10.6 The problem is that 10.5 does not know URLByResolvingBookmarkData so compilation fails. MY first idea was to ifdef this code out as it is, but maybe someone has a better idea to handle that.
The text was updated successfully, but these errors were encountered:
Oh, that was me. :-/
Of course, this can't work on 10.5. And it isn't needed there, because the way recent documents are store was only changed in 10.6. It seems apple suggests for such cases:
if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_5) {
// 10.5 or less
Hi everyone,
Once again compilation on 10.5 was broken hey we survived a long time without this. :)
The culprit is da471f1 which teaches Quicksilver how to get recent documents with 10.6 The problem is that 10.5 does not know URLByResolvingBookmarkData so compilation fails. MY first idea was to ifdef this code out as it is, but maybe someone has a better idea to handle that.
The text was updated successfully, but these errors were encountered: