Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
2ed376f7
Commit
2ed376f7
authored
May 26, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fixed regressions from merges with the 1.0-bugfix branch
parent
74e5a072
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
4 deletions
+15
-4
extras/package/macosx/vlc.xcodeproj/project.pbxproj
extras/package/macosx/vlc.xcodeproj/project.pbxproj
+4
-2
modules/gui/macosx/misc.m
modules/gui/macosx/misc.m
+6
-0
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+5
-2
No files found.
extras/package/macosx/vlc.xcodeproj/project.pbxproj
View file @
2ed376f7
...
...
@@ -296,6 +296,8 @@
CC4ED9B00ABE07C800CA4CC5
/* repeat_single_embedded_blue.png */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
image.png
;
name
=
repeat_single_embedded_blue.png
;
path
=
Resources/repeat_single_embedded_blue.png
;
sourceTree
=
"<group>"
;
};
CC4ED9B10ABE07C800CA4CC5
/* shuffle_embedded_blue.png */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
image.png
;
name
=
shuffle_embedded_blue.png
;
path
=
Resources/shuffle_embedded_blue.png
;
sourceTree
=
"<group>"
;
};
CC4ED9B20ABE07C800CA4CC5
/* shuffle_embedded.png */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
image.png
;
name
=
shuffle_embedded.png
;
path
=
Resources/shuffle_embedded.png
;
sourceTree
=
"<group>"
;
};
CC61608A0FCC2FDF00D71FB1
/* vlm.h */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.h
;
name
=
vlm.h
;
path
=
../../../modules/gui/macosx/vlm.h
;
sourceTree
=
SOURCE_ROOT
;
};
CC61608B0FCC2FDF00D71FB1
/* vlm.m */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.c.objc
;
name
=
vlm.m
;
path
=
../../../modules/gui/macosx/vlm.m
;
sourceTree
=
SOURCE_ROOT
;
};
CC62B8C50FC5787D0077BB8C
/* aiff.icns */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
image.icns
;
name
=
aiff.icns
;
path
=
Resources/aiff.icns
;
sourceTree
=
"<group>"
;
};
CC62B8C60FC5787D0077BB8C
/* audio.icns */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
image.icns
;
name
=
audio.icns
;
path
=
Resources/audio.icns
;
sourceTree
=
"<group>"
;
};
CC62B8C70FC5787D0077BB8C
/* flv.icns */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
image.icns
;
name
=
flv.icns
;
path
=
Resources/flv.icns
;
sourceTree
=
"<group>"
;
};
...
...
@@ -520,12 +522,12 @@
CCC593790AB4A9FB0004FF52
/* embeddedwindow.m */
,
2AEF857609A5FEC900130822
/* fspanel.h */
,
2AEF857709A5FEC900130822
/* fspanel.m */
,
CC61608A0FCC2FDF00D71FB1
/* vlm.h */
,
CC61608B0FCC2FDF00D71FB1
/* vlm.m */
,
CC6EDD4F0B9CA2140096068A
/* eyetv.h */
,
CC6EDD500B9CA2140096068A
/* eyetv.m */
,
CCB24D5E0D54BBAE004D780C
/* simple_prefs.h */
,
CCB24D5D0D54BBAE004D780C
/* simple_prefs.m */
,
CCB60A3F0E6E5DD900407004
/* vlm.h */
,
CCB60A3E0E6E5DD900407004
/* vlm.m */
,
CC62B9080FC5DB9D0077BB8C
/* sidebarview.h */
,
CC62B9090FC5DB9D0077BB8C
/* sidebarview.m */
,
CC62B90A0FC5DB9D0077BB8C
/* sidestatusview.h */
,
...
...
modules/gui/macosx/misc.m
View file @
2ed376f7
...
...
@@ -132,6 +132,12 @@ static NSMutableArray *blackoutWindows = NULL;
blackoutWindows
=
[[
NSMutableArray
alloc
]
initWithCapacity
:
1
];
}
-
(
void
)
dealloc
{
[
blackoutWindows
release
];
[
super
dealloc
];
}
+
(
NSScreen
*
)
screenWithDisplayID
:
(
CGDirectDisplayID
)
displayID
{
int
i
;
...
...
modules/gui/macosx/simple_prefs.m
View file @
2ed376f7
...
...
@@ -661,7 +661,11 @@ static inline void save_string_list( intf_thread_t * p_intf, id object, const ch
p_item
=
config_FindConfig
(
VLC_OBJECT
(
p_intf
),
name
);
p_stringobject
=
(
NSString
*
)[[
object
selectedItem
]
representedObject
];
assert
([
p_stringobject
isKindOfClass
:[
NSString
class
]]);
if
(
p_stringobject
)
config_PutPsz
(
p_intf
,
name
,
[
p_stringobject
UTF8String
]
);
if
(
p_stringobject
)
{
config_PutPsz
(
p_intf
,
name
,
[
p_stringobject
UTF8String
]
);
[
p_stringobject
release
];
}
}
static
inline
void
save_module_list
(
intf_thread_t
*
p_intf
,
id
object
,
const
char
*
name
)
...
...
@@ -694,7 +698,6 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
{
char
*
psz_tmp
;
int
i
;
NSString
*
p_stringobject
;
#define SaveIntList( object, name ) save_int_list( p_intf, object, name )
...
...
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