Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
f8d6e492
Commit
f8d6e492
authored
Jul 29, 2013
by
Felix Paul Kühne
Committed by
Felix Paul Kühne
Jul 29, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fix compatibility header for compilation on 10.6
parent
4ebe9811
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
modules/gui/macosx/CompatibilityFixes.h
modules/gui/macosx/CompatibilityFixes.h
+10
-0
No files found.
modules/gui/macosx/CompatibilityFixes.h
View file @
f8d6e492
...
...
@@ -44,6 +44,15 @@ enum {
NSApplicationPresentationAutoHideToolbar
=
(
1
<<
11
)
};
enum
{
NSWindowAnimationBehaviorDefault
=
0
,
// let AppKit infer animation behavior for this window
NSWindowAnimationBehaviorNone
=
2
,
// suppress inferred animations (don't animate)
NSWindowAnimationBehaviorDocumentWindow
=
3
,
NSWindowAnimationBehaviorUtilityWindow
=
4
,
NSWindowAnimationBehaviorAlertPanel
=
5
};
typedef
NSInteger
NSWindowAnimationBehavior
;
/* the following is just to fix warnings, not for implementation! */
@interface
NSWindow
(
IntroducedInLion
)
-
(
void
)
setRestorable
:(
BOOL
)
b_value
;
...
...
@@ -51,6 +60,7 @@ enum {
-
(
void
)
windowWillEnterFullScreen
:(
NSNotification
*
)
notification
;
-
(
void
)
windowDidEnterFullScreen
:(
NSNotification
*
)
notification
;
-
(
void
)
windowWillExitFullScreen
:(
NSNotification
*
)
notification
;
-
(
void
)
setAnimationBehavior
:(
NSWindowAnimationBehavior
)
newAnimationBehavior
;
@end
@interface
NSEvent
(
IntroducedInLion
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment