macosx: Constify notification window level names

Signed-off-by: Claudio Cambra <developer@claudiocambra.com>
This commit is contained in:
Claudio Cambra 2024-04-08 21:26:46 +08:00 committed by Steve Lhomme
parent bd6ad756ca
commit ef0149ada8
2 changed files with 4 additions and 4 deletions

View File

@ -29,8 +29,8 @@
@class VLCVideoWindowCommon;
@class VLCVoutView;
extern NSString *VLCWindowShouldUpdateLevel;
extern NSString *VLCWindowLevelKey;
extern NSString * const VLCWindowShouldUpdateLevel;
extern NSString * const VLCWindowLevelKey;
extern NSString * const VLCWindowFloatOnTopChangedNotificationName;
extern NSString * const VLCWindowFloatOnTopEnabledNotificationKey;

View File

@ -47,8 +47,8 @@
#include <vlc_configuration.h>
#include <vlc_vout_display.h>
NSString *VLCWindowShouldUpdateLevel = @"VLCWindowShouldUpdateLevel";
NSString *VLCWindowLevelKey = @"VLCWindowLevelKey";
NSString * const VLCWindowShouldUpdateLevel = @"VLCWindowShouldUpdateLevel";
NSString * const VLCWindowLevelKey = @"VLCWindowLevelKey";
NSString * const VLCWindowFloatOnTopChangedNotificationName = @"VLCWindowFloatOnTopChanged";
NSString * const VLCWindowFloatOnTopEnabledNotificationKey = @"VLCWindowFloatOnTopEnabled";