ios: fixed broken clang pragmas
authorBernhard Miklautz <bmiklautz@thinstuff.at>
Thu, 7 Nov 2013 10:13:59 +0000 (11:13 +0100)
committerBernhard Miklautz <bmiklautz@thinstuff.at>
Fri, 15 Nov 2013 10:55:33 +0000 (11:55 +0100)
client/iOS/Views/BlockAlertView.m

index 2a72700..8b93828 100755 (executable)
@@ -279,10 +279,10 @@ static UIFont *buttonFont = nil;
         button.frame = CGRectMake(xOffset, _height, width, kAlertButtonHeight);
         button.titleLabel.font = buttonFont;
         if (IOS_LESS_THAN_6) {
-#pragma clan diagnostic push
+#pragma clang diagnostic push
 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
             button.titleLabel.minimumFontSize = 10;
-#pragma clan diagnostic pop
+#pragma clang diagnostic pop
         }
         else {
             button.titleLabel.adjustsFontSizeToFitWidth = YES;