This commit is contained in:
Gautier Pelloux-Prayer 2015-07-29 17:39:38 +02:00
parent 19685e7fdd
commit 1b2d74ff36
6 changed files with 5 additions and 3 deletions

View file

@ -150,7 +150,6 @@
<accessibility key="accessibilityConfiguration" hint="" label=""/>
<fontDescription key="fontDescription" type="system" pointSize="26"/>
<textInputTraits key="textInputTraits" autocapitalizationType="sentences" autocorrectionType="yes" spellCheckingType="yes" keyboardAppearance="alert" returnKeyType="send"/>
<dataDetectorType key="dataDetectorTypes" phoneNumber="YES" link="YES" address="YES"/>
<connections>
<outlet property="delegate" destination="-1" id="RVG-F4-M9q"/>
</connections>

View file

@ -7,6 +7,7 @@
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface UILabel (Boldify)

View file

@ -18,6 +18,7 @@
*/
#import <UIKit/UIColor.h>
#import <UIKit/UIKit.h>
#define LINPHONE_MAIN_COLOR [UIColor colorWithRed:207.0f/255.0f green:76.0f/255.0f blue:41.0f/255.0f alpha:1.0f]
#define LINPHONE_SETTINGS_BG_IOS7 [UIColor colorWithRed:164/255. green:175/255. blue:183/255. alpha:1.0]//[UIColor colorWithWhite:0.88 alpha:1.0]

View file

@ -7,6 +7,7 @@
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface UITextField (DoneButton)
- (void)addDoneButton;

View file

@ -18,6 +18,7 @@
*/
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface VideoZoomHandler : NSObject {
float zoomLevel, cx, cy;

View file

@ -20,8 +20,8 @@
- (void)updateHeader {
LinphoneProxyConfig *default_proxy = linphone_core_get_default_proxy_config([LinphoneManager getLc]);
const LinphoneAddress *addr = linphone_proxy_config_get_identity_address(default_proxy);
if (default_proxy != NULL) {
const LinphoneAddress *addr = linphone_proxy_config_get_identity_address(default_proxy);
[FastAddressBook setDisplayNameLabel:_nameLabel forAddress:addr];
char *as_string = linphone_address_as_string(addr);
_addressLabel.text = [NSString stringWithUTF8String:as_string];
@ -35,7 +35,6 @@
}
- (IBAction)onLateralSwipe:(id)sender {
LOGI(@"Swipe!");
[[PhoneMainView instance].mainViewController hideSideMenu:YES];
}
@end