Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes: Imports & types. #68

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions DCIntrospect/DCCrossHairView.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
// Created by Domestic Cat on 3/05/11.
//

#import <UIKit/UIKit.h>

@interface DCCrossHairView : UIView
{
Expand Down
2 changes: 1 addition & 1 deletion DCIntrospect/DCFrameView.m
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ - (void)drawRect:(CGRect)rect

UIFont *font = [UIFont systemFontOfSize:10.0f];

float dash[2] = {3, 3};
CGFloat dash[2] = {3, 3};
CGContextSetLineDash(context, 0, dash, 2);

// edge->left side
Expand Down
2 changes: 1 addition & 1 deletion DCIntrospect/DCStatusBarOverlay.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

// Based mainly on @myellow's excellent MTStatusBarOverlay: https://github.com/myell0w/MTStatusBarOverlay


#import <UIKit/UIKit.h>
#import "DCIntrospectSettings.h"

#define kDCIntrospectNotificationStatusBarTapped @"kDCIntrospectNotificationStatusBarTapped"
Expand Down