Fixed compiler warnings

Tags can be edited (no search, no central registration yet)
This commit is contained in:
michael starke
2014-03-14 01:35:00 +01:00
parent e99414a318
commit 24274f472c
2 changed files with 2 additions and 2 deletions

View File

@@ -70,7 +70,7 @@
NSInteger compressionIndex = [self.databaseCompressionPopupButton indexOfSelectedItem]; NSInteger compressionIndex = [self.databaseCompressionPopupButton indexOfSelectedItem];
if(compressionIndex >= KPKCompressionNone && compressionIndex < KPKCompressionCount) { if(compressionIndex >= KPKCompressionNone && compressionIndex < KPKCompressionCount) {
metaData.compressionAlgorithm = compressionIndex; metaData.compressionAlgorithm = (uint32_t)compressionIndex;
} }
NSColor *databaseColor = [self.databaseColorColorWell color]; NSColor *databaseColor = [self.databaseColorColorWell color];
if([databaseColor isEqual:[NSColor clearColor]]) { if([databaseColor isEqual:[NSColor clearColor]]) {