Declare PSMTabBarControl delegate on 10.6

This avoids a compilation warning, nothing else.
This commit is contained in:
Bjorn Winckler
2009-09-01 22:14:12 +02:00
parent 6a87e8cc02
commit 6907a6b43e
@@ -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