mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-06-11 15:37:29 +02:00
Declare PSMTabBarControl delegate on 10.6
This avoids a compilation warning, nothing else.
This commit is contained in:
@@ -39,7 +39,12 @@ enum {
|
||||
PSMTab_PositionSingleMask = 1 << 7
|
||||
};
|
||||
|
||||
@interface PSMTabBarControl : NSControl {
|
||||
@interface PSMTabBarControl : NSControl
|
||||
#if (MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_5)
|
||||
// 10.6 has turned delegate messages into formal protocols
|
||||
<NSTabViewDelegate>
|
||||
#endif
|
||||
{
|
||||
|
||||
// control basics
|
||||
NSMutableArray *_cells; // the cells that draw the tabs
|
||||
|
||||
Reference in New Issue
Block a user