Files
libreoffice/ios/iosremote/PopoverViewCompatibility.h
Siqi LIU 2a5d3cbebc design style revamped for iOS7
Change-Id: I469e50e779ac201ab15aa8fff8e2f6fcfb2f99b6
2013-08-07 12:38:03 +08:00

24 lines
650 B
C
Executable File

//
// PopoverViewCompatibility.h
// popover
//
// Created by alanduncan on 7/22/13.
// Copyright (c) 2013 Oliver Rickard. All rights reserved.
//
#ifndef popover_PopoverViewCompatibility_h
#define popover_PopoverViewCompatibility_h
#ifdef __IPHONE_6_0
#define UITextAlignmentCenter NSTextAlignmentCenter
#define UITextAlignmentLeft NSTextAlignmentLeft
#define UITextAlignmentRight NSTextAlignmentRight
#define UILineBreakModeTailTruncation NSLineBreakByTruncatingTail
#define UILineBreakModeMiddleTruncation NSLineBreakByTruncatingMiddle
#define UILineBreakModeWordWrap NSLineBreakByWordWrapping
#endif
#endif