Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
11008861
Commit
11008861
authored
Dec 28, 2014
by
David Fuhrmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: remove old playlist data source, remove unneeded outline view inits
parent
598ae833
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
15 deletions
+5
-15
extras/package/macosx/Resources/English.lproj/MainWindow.xib
extras/package/macosx/Resources/English.lproj/MainWindow.xib
+3
-11
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+2
-4
No files found.
extras/package/macosx/Resources/English.lproj/MainWindow.xib
View file @
11008861
...
...
@@ -21,12 +21,12 @@
</object>
<object
class=
"NSMutableArray"
key=
"IBDocument.EditedObjectIDs"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
<integer
value=
"5305"
/>
<integer
value=
"5605"
/>
<integer
value=
"4756"
/>
<integer
value=
"5265"
/>
<integer
value=
"
5260
"
/>
<integer
value=
"
21
"
/>
<integer
value=
"4850"
/>
<integer
value=
"5260"
/>
<integer
value=
"5305"
/>
</object>
<object
class=
"NSArray"
key=
"IBDocument.PluginDependencies"
>
<bool
key=
"EncodedWithXMLCoder"
>
YES
</bool>
...
...
@@ -2462,14 +2462,6 @@
</object>
<int
key=
"connectionID"
>
5412
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
dataSource
</string>
<reference
key=
"source"
ref=
"23448837"
/>
<reference
key=
"destination"
ref=
"998338913"
/>
</object>
<int
key=
"connectionID"
>
5599
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
delegate
</string>
...
...
modules/gui/macosx/playlist.m
View file @
11008861
...
...
@@ -228,10 +228,6 @@
return
;
playlist_t
*
p_playlist
=
pl_Get
(
VLCIntf
);
[
o_outline_view
setTarget
:
self
];
[
o_outline_view
setDelegate
:
self
];
[
o_outline_view
setAllowsEmptySelection
:
NO
];
[
o_outline_view
expandItem
:
[
o_outline_view
itemAtRow
:
0
]];
[
self
reloadStyles
];
[
self
initStrings
];
...
...
@@ -240,8 +236,10 @@
[
o_outline_view
setDataSource
:
o_model
];
[
o_outline_view
reloadData
];
[
o_outline_view
setTarget
:
self
];
[
o_outline_view
setDoubleAction
:
@selector
(
playItem
:)];
[
o_outline_view
setAllowsEmptySelection
:
NO
];
[
o_outline_view
registerForDraggedTypes
:
[
NSArray
arrayWithObjects
:
NSFilenamesPboardType
,
@"VLCPlaylistItemPboardType"
,
nil
]];
[
o_outline_view
setIntercellSpacing
:
NSMakeSize
(
0
.
0
,
1
.
0
)];
...
...
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