Skip to content

Commit

Permalink
Added @mdbraber's second patches
Browse files Browse the repository at this point in the history
  • Loading branch information
David Kaluta authored and David Kaluta committed Oct 14, 2019
1 parent 4e84cf9 commit 0f930f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ testRunner: $(SOURCE_FILES)
@echo
@echo ---- Compiling test runner:
@echo ======================================
$(COMPILER) $(ARG_DEBUG) -O3 -Wall -std=c99 -force_cpusubtype_ALL -mmacosx-version-min=10.5 -arch ppc -arch x86_64 -DUSE_MOCKED_CALENDARSTORE -framework Cocoa -framework CalendarStore -framework AppKit -framework AddressBook -o $@ testRunner.m $(SOURCE_FILES) calendarStoreMock/*.m tests/unit/*.m
$(COMPILER) $(ARG_DEBUG) -O3 -Wall -std=c99 -force_cpusubtype_ALL -mmacosx-version-min=10.5 -arch x86_64 -DUSE_MOCKED_CALENDARSTORE -framework Cocoa -framework CalendarStore -framework AppKit -framework AddressBook -o $@ testRunner.m $(SOURCE_FILES) calendarStoreMock/*.m tests/unit/*.m



Expand Down
2 changes: 1 addition & 1 deletion icalBuddy.m
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ of this software and associated documentation files (the "Software"), to deal
int major;
int minor;
int build;
} version = {1,10,0};
} version = {1,10,1};

NSString* versionNumberStr()
{
Expand Down
1 change: 1 addition & 0 deletions icalBuddyPrettyPrint.m
Original file line number Diff line number Diff line change
Expand Up @@ -1060,6 +1060,7 @@ void printItemSections(NSArray *sections, CalItemPrintOption printOptions)
&& prettyPrintOptions.useCalendarColorsForTitles
&& ![[[thisOutput attributesAtIndex:0 effectiveRange:NULL] allKeys] containsObject:NSForegroundColorAttributeName]
&& section.items != nil && [section.items count] > 0
&& [[((CalCalendarItem *)[section.items objectAtIndex:0]) calendar] color] != nil
)
{
[thisOutput
Expand Down

0 comments on commit 0f930f2

Please sign in to comment.