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
d6bfd69e
Commit
d6bfd69e
authored
Jun 13, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: remove deprecated method selectRow:byExtendingSelection:
parent
f7692e67
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+2
-2
modules/gui/macosx/prefs.m
modules/gui/macosx/prefs.m
+1
-1
modules/gui/macosx/sidebarview.m
modules/gui/macosx/sidebarview.m
+2
-2
No files found.
modules/gui/macosx/playlist.m
View file @
d6bfd69e
...
...
@@ -1408,7 +1408,7 @@
}
if
(
i_row
>
-
1
)
{
[
o_outline_view
selectRow
:
i_row
byExtendingSelection
:
NO
];
[
o_outline_view
selectRowIndexes
:[
NSIndexSet
indexSetWithIndex
:
i_row
]
byExtendingSelection
:
NO
];
[
o_outline_view
scrollRowToVisible
:
i_row
];
}
pl_Release
(
VLCIntf
);
...
...
@@ -1826,7 +1826,7 @@
}
[
o_outline_view
deselectAll
:
self
];
[
o_outline_view
selectRow
:
i_row
byExtendingSelection
:
NO
];
[
o_outline_view
selectRow
Indexes
:[
NSIndexSet
indexSetWithIndex
:
i_row
]
byExtendingSelection
:
NO
];
[
o_outline_view
scrollRowToVisible
:
i_row
];
pl_Release
(
VLCIntf
);
...
...
modules/gui/macosx/prefs.m
View file @
d6bfd69e
...
...
@@ -179,7 +179,7 @@ static VLCPrefs *_o_sharedMainInstance = nil;
[
o_prefs_view
setHasVerticalScroller
:
YES
];
[
o_prefs_view
setDrawsBackground
:
NO
];
[
o_prefs_view
setDocumentView
:
o_empty_view
];
[
o_tree
selectRow
:
0
byExtendingSelection
:
NO
];
[
o_tree
selectRowIndexes
:
[
NSIndexSet
indexSetWithIndex
:
0
]
byExtendingSelection
:
NO
];
}
-
(
void
)
setTitle
:
(
NSString
*
)
o_title_name
...
...
modules/gui/macosx/sidebarview.m
View file @
d6bfd69e
...
...
@@ -131,7 +131,7 @@
i_row
=
[
o_outline_view
rowForItem
:
item
];
if
(
i_row
>
-
1
)
{
[
o_outline_view
selectRow
:
i_row
byExtendingSelection
:
NO
];
[
o_outline_view
selectRowIndexes
:[
NSIndexSet
indexSetWithIndex
:
i_row
]
byExtendingSelection
:
NO
];
[
o_outline_view
scrollRowToVisible
:
i_row
];
}
}
...
...
@@ -162,7 +162,7 @@
i_row
=
[
o_outline_view
rowForItem
:[
o_playlist
playingItem
]];
if
(
i_row
>
-
1
)
{
[
o_outline_view
selectRow
:
i_row
byExtendingSelection
:
NO
];
[
o_outline_view
selectRowIndexes
:[
NSIndexSet
indexSetWithIndex
:
i_row
]
byExtendingSelection
:
NO
];
[
o_outline_view
scrollRowToVisible
:
i_row
];
}
}
...
...
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