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
f2600dd0
Commit
f2600dd0
authored
Apr 01, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx gui: fix a playlist object leak and use pl_release.
parent
65797af8
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
58 additions
and
55 deletions
+58
-55
modules/gui/macosx/controls.m
modules/gui/macosx/controls.m
+6
-6
modules/gui/macosx/embeddedwindow.m
modules/gui/macosx/embeddedwindow.m
+1
-1
modules/gui/macosx/extended.m
modules/gui/macosx/extended.m
+3
-3
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+47
-44
modules/gui/macosx/wizard.m
modules/gui/macosx/wizard.m
+1
-1
No files found.
modules/gui/macosx/controls.m
View file @
f2600dd0
...
@@ -235,7 +235,7 @@
...
@@ -235,7 +235,7 @@
p_intf
->
p_sys
->
b_playmode_update
=
true
;
p_intf
->
p_sys
->
b_playmode_update
=
true
;
p_intf
->
p_sys
->
b_intf_update
=
true
;
p_intf
->
p_sys
->
b_intf_update
=
true
;
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
}
}
/* three little ugly helpers */
/* three little ugly helpers */
...
@@ -260,7 +260,7 @@
...
@@ -260,7 +260,7 @@
playlist_t
*
p_playlist
=
pl_Hold
(
VLCIntf
);
playlist_t
*
p_playlist
=
pl_Hold
(
VLCIntf
);
var_Get
(
p_playlist
,
"random"
,
&
val
);
var_Get
(
p_playlist
,
"random"
,
&
val
);
[
o_btn_shuffle
setState
:
val
.
b_bool
];
[
o_btn_shuffle
setState
:
val
.
b_bool
];
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
}
}
-
(
IBAction
)
repeatButtonAction
:(
id
)
sender
-
(
IBAction
)
repeatButtonAction
:(
id
)
sender
...
@@ -327,7 +327,7 @@
...
@@ -327,7 +327,7 @@
p_intf
->
p_sys
->
b_playmode_update
=
true
;
p_intf
->
p_sys
->
b_playmode_update
=
true
;
p_intf
->
p_sys
->
b_intf_update
=
true
;
p_intf
->
p_sys
->
b_intf_update
=
true
;
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
}
}
...
@@ -357,7 +357,7 @@
...
@@ -357,7 +357,7 @@
p_intf
->
p_sys
->
b_playmode_update
=
true
;
p_intf
->
p_sys
->
b_playmode_update
=
true
;
p_intf
->
p_sys
->
b_intf_update
=
true
;
p_intf
->
p_sys
->
b_intf_update
=
true
;
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
}
}
-
(
IBAction
)
loop
:(
id
)
sender
-
(
IBAction
)
loop
:(
id
)
sender
...
@@ -386,7 +386,7 @@
...
@@ -386,7 +386,7 @@
p_intf
->
p_sys
->
b_playmode_update
=
true
;
p_intf
->
p_sys
->
b_playmode_update
=
true
;
p_intf
->
p_sys
->
b_intf_update
=
true
;
p_intf
->
p_sys
->
b_intf_update
=
true
;
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
}
}
-
(
IBAction
)
forward
:(
id
)
sender
-
(
IBAction
)
forward
:(
id
)
sender
...
@@ -1107,7 +1107,7 @@
...
@@ -1107,7 +1107,7 @@
}
}
if
(
p_input
)
vlc_object_release
(
p_input
);
if
(
p_input
)
vlc_object_release
(
p_input
);
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
return
(
bEnabled
);
return
(
bEnabled
);
}
}
...
...
modules/gui/macosx/embeddedwindow.m
View file @
f2600dd0
...
@@ -160,7 +160,7 @@
...
@@ -160,7 +160,7 @@
playlist_t
*
p_playlist
=
pl_Hold
(
VLCIntf
);
playlist_t
*
p_playlist
=
pl_Hold
(
VLCIntf
);
playlist_Stop
(
p_playlist
);
playlist_Stop
(
p_playlist
);
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
YES
;
return
YES
;
}
}
...
...
modules/gui/macosx/extended.m
View file @
f2600dd0
...
@@ -435,7 +435,7 @@ static VLCExtended *_o_sharedInstance = nil;
...
@@ -435,7 +435,7 @@ static VLCExtended *_o_sharedInstance = nil;
/* store to prefs */
/* store to prefs */
config_PutFloat
(
p_playlist
,
"macosx-opaqueness"
,
val
.
f_float
);
config_PutFloat
(
p_playlist
,
"macosx-opaqueness"
,
val
.
f_float
);
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
o_config_changed
=
YES
;
o_config_changed
=
YES
;
}
}
...
@@ -784,7 +784,7 @@ static VLCExtended *_o_sharedInstance = nil;
...
@@ -784,7 +784,7 @@ static VLCExtended *_o_sharedInstance = nil;
"extended control attribute '%s' (%i)"
,
"extended control attribute '%s' (%i)"
,
[[
theModules
objectAtIndex
:
x
]
UTF8String
]
,
returnedValue
);
[[
theModules
objectAtIndex
:
x
]
UTF8String
]
,
returnedValue
);
[
theModules
release
];
[
theModules
release
];
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
;
return
;
}
}
...
@@ -795,6 +795,6 @@ static VLCExtended *_o_sharedInstance = nil;
...
@@ -795,6 +795,6 @@ static VLCExtended *_o_sharedInstance = nil;
msg_Dbg
(
VLCIntf
,
"VLCExtended: saved certain preferences successfully"
);
msg_Dbg
(
VLCIntf
,
"VLCExtended: saved certain preferences successfully"
);
[
theModules
release
];
[
theModules
release
];
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
}
}
@end
@end
modules/gui/macosx/playlist.m
View file @
f2600dd0
...
@@ -119,7 +119,7 @@
...
@@ -119,7 +119,7 @@
[
o_outline_view
setAllowsEmptySelection
:
NO
];
[
o_outline_view
setAllowsEmptySelection
:
NO
];
[
o_outline_view
expandItem
:
[
o_outline_view
itemAtRow
:
0
]];
[
o_outline_view
expandItem
:
[
o_outline_view
itemAtRow
:
0
]];
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
[
self
initStrings
];
[
self
initStrings
];
}
}
...
@@ -187,7 +187,7 @@
...
@@ -187,7 +187,7 @@
p_return
=
p_item
->
pp_children
[
index
];
p_return
=
p_item
->
pp_children
[
index
];
PL_UNLOCK
;
PL_UNLOCK
;
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
o_value
=
[
o_outline_dict
objectForKey
:[
NSString
stringWithFormat
:
@"%p"
,
p_return
]];
o_value
=
[
o_outline_dict
objectForKey
:[
NSString
stringWithFormat
:
@"%p"
,
p_return
]];
...
@@ -390,7 +390,7 @@
...
@@ -390,7 +390,7 @@
char
**
ppsz_services
=
vlc_sd_GetNames
(
&
ppsz_name
);
char
**
ppsz_services
=
vlc_sd_GetNames
(
&
ppsz_name
);
if
(
!
ppsz_services
)
if
(
!
ppsz_services
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
;
return
;
}
}
...
@@ -427,7 +427,7 @@
...
@@ -427,7 +427,7 @@
free
(
ppsz_services
);
free
(
ppsz_services
);
free
(
ppsz_name
);
free
(
ppsz_name
);
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
}
}
-
(
void
)
searchfieldChanged
:(
NSNotification
*
)
o_notification
-
(
void
)
searchfieldChanged
:(
NSNotification
*
)
o_notification
...
@@ -498,7 +498,7 @@
...
@@ -498,7 +498,7 @@
[
o_status_field
setStringValue
:
_NS
(
"1 item"
)];
[
o_status_field
setStringValue
:
_NS
(
"1 item"
)];
}
}
PL_UNLOCK
;
PL_UNLOCK
;
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
[
self
outlineViewSelectionDidChange
:
nil
];
[
self
outlineViewSelectionDidChange
:
nil
];
}
}
...
@@ -518,7 +518,7 @@
...
@@ -518,7 +518,7 @@
[[[
VLCMain
sharedInstance
]
getControls
]
shuffle
];
[[[
VLCMain
sharedInstance
]
getControls
]
shuffle
];
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
}
}
-
(
void
)
outlineViewSelectionDidChange
:(
NSNotification
*
)
notification
-
(
void
)
outlineViewSelectionDidChange
:(
NSNotification
*
)
notification
...
@@ -621,13 +621,13 @@
...
@@ -621,13 +621,13 @@
if
(
p_node
==
p_item
)
if
(
p_node
==
p_item
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
YES
;
return
YES
;
}
}
if
(
p_node
->
i_children
<
1
)
if
(
p_node
->
i_children
<
1
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NO
;
return
NO
;
}
}
...
@@ -647,7 +647,7 @@
...
@@ -647,7 +647,7 @@
else
if
(
i
==
p_playlist
->
all_items
.
i_size
-
1
)
else
if
(
i
==
p_playlist
->
all_items
.
i_size
-
1
)
{
{
if
(
!
b_locked
)
PL_UNLOCK
;
if
(
!
b_locked
)
PL_UNLOCK
;
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NO
;
return
NO
;
}
}
}
}
...
@@ -659,14 +659,14 @@
...
@@ -659,14 +659,14 @@
if
(
p_temp_item
==
p_node
)
if
(
p_temp_item
==
p_node
)
{
{
if
(
!
b_locked
)
PL_UNLOCK
;
if
(
!
b_locked
)
PL_UNLOCK
;
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
YES
;
return
YES
;
}
}
}
}
if
(
!
b_locked
)
PL_UNLOCK
;
if
(
!
b_locked
)
PL_UNLOCK
;
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NO
;
return
NO
;
}
}
...
@@ -762,7 +762,7 @@
...
@@ -762,7 +762,7 @@
p_playlist
->
p_local_category
,
"export-m3u"
);
p_playlist
->
p_local_category
,
"export-m3u"
);
}
}
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
}
}
/* When called retrieves the selected outlineview row and plays that node or item */
/* When called retrieves the selected outlineview row and plays that node or item */
...
@@ -797,7 +797,7 @@
...
@@ -797,7 +797,7 @@
}
}
playlist_Control
(
p_playlist
,
PLAYLIST_VIEWPLAY
,
pl_Unlocked
,
p_node
,
p_item
);
playlist_Control
(
p_playlist
,
PLAYLIST_VIEWPLAY
,
pl_Unlocked
,
p_node
,
p_item
);
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
}
}
-
(
IBAction
)
revealItemInFinder
:(
id
)
sender
-
(
IBAction
)
revealItemInFinder
:(
id
)
sender
...
@@ -856,7 +856,7 @@
...
@@ -856,7 +856,7 @@
}
}
}
}
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
[
self
playlistUpdated
];
[
self
playlistUpdated
];
}
}
...
@@ -887,7 +887,7 @@
...
@@ -887,7 +887,7 @@
playlist_AskForArtEnqueue
(
p_playlist
,
p_item
->
p_input
,
pl_Unlocked
);
playlist_AskForArtEnqueue
(
p_playlist
,
p_item
->
p_input
,
pl_Unlocked
);
}
}
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
[
self
playlistUpdated
];
[
self
playlistUpdated
];
}
}
...
@@ -904,7 +904,7 @@
...
@@ -904,7 +904,7 @@
[
o_mi
setState
:
playlist_IsServicesDiscoveryLoaded
(
p_playlist
,
[
o_mi
setState
:
playlist_IsServicesDiscoveryLoaded
(
p_playlist
,
[
o_string
UTF8String
]
)
?
YES
:
NO
];
[
o_string
UTF8String
]
)
?
YES
:
NO
];
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
[
self
playlistUpdated
];
[
self
playlistUpdated
];
return
;
return
;
}
}
...
@@ -960,7 +960,7 @@
...
@@ -960,7 +960,7 @@
PL_UNLOCK
;
PL_UNLOCK
;
[
self
playlistUpdated
];
[
self
playlistUpdated
];
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
}
}
-
(
IBAction
)
sortNodeByName
:(
id
)
sender
-
(
IBAction
)
sortNodeByName
:(
id
)
sender
...
@@ -1001,7 +1001,7 @@
...
@@ -1001,7 +1001,7 @@
p_item
->
p_parent
,
i_mode
,
ORDER_NORMAL
);
p_item
->
p_parent
,
i_mode
,
ORDER_NORMAL
);
PL_UNLOCK
;
PL_UNLOCK
;
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
[
self
playlistUpdated
];
[
self
playlistUpdated
];
}
}
...
@@ -1070,7 +1070,10 @@
...
@@ -1070,7 +1070,10 @@
p_input
=
input_item_New
(
p_playlist
,
[
o_uri
fileSystemRepresentation
],
[
o_name
UTF8String
]
);
p_input
=
input_item_New
(
p_playlist
,
[
o_uri
fileSystemRepresentation
],
[
o_name
UTF8String
]
);
if
(
!
p_input
)
if
(
!
p_input
)
{
pl_Release
(
p_intf
);
return
NULL
;
return
NULL
;
}
if
(
o_options
)
if
(
o_options
)
{
{
...
@@ -1089,7 +1092,7 @@
...
@@ -1089,7 +1092,7 @@
noteNewRecentDocumentURL:
o_true_file
];
noteNewRecentDocumentURL:
o_true_file
];
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
return
p_input
;
return
p_input
;
}
}
...
@@ -1144,7 +1147,7 @@
...
@@ -1144,7 +1147,7 @@
PL_UNLOCK
;
PL_UNLOCK
;
[
self
playlistUpdated
];
[
self
playlistUpdated
];
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
}
}
-
(
void
)
appendNodeArray
:(
NSArray
*
)
o_array
inNode
:(
playlist_item_t
*
)
p_node
atPos
:(
int
)
i_position
enqueue
:(
BOOL
)
b_enqueue
-
(
void
)
appendNodeArray
:(
NSArray
*
)
o_array
inNode
:(
playlist_item_t
*
)
p_node
atPos
:(
int
)
i_position
enqueue
:(
BOOL
)
b_enqueue
...
@@ -1183,7 +1186,7 @@
...
@@ -1183,7 +1186,7 @@
vlc_gc_decref
(
p_input
);
vlc_gc_decref
(
p_input
);
}
}
[
self
playlistUpdated
];
[
self
playlistUpdated
];
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
}
}
-
(
NSMutableArray
*
)
subSearchItem
:(
playlist_item_t
*
)
p_item
-
(
NSMutableArray
*
)
subSearchItem
:(
playlist_item_t
*
)
p_item
...
@@ -1221,7 +1224,7 @@
...
@@ -1221,7 +1224,7 @@
else
if
(
p_selected_item
==
p_item
->
pp_children
[
i_current
]
&&
else
if
(
p_selected_item
==
p_item
->
pp_children
[
i_current
]
&&
b_selected_item_met
==
YES
)
b_selected_item_met
==
YES
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NULL
;
return
NULL
;
}
}
else
if
(
b_selected_item_met
==
YES
&&
else
if
(
b_selected_item_met
==
YES
&&
...
@@ -1230,7 +1233,7 @@
...
@@ -1230,7 +1233,7 @@
[
o_current_author
rangeOfString
:[
o_search_field
[
o_current_author
rangeOfString
:[
o_search_field
stringValue
]
options
:
NSCaseInsensitiveSearch
].
length
)
)
stringValue
]
options
:
NSCaseInsensitiveSearch
].
length
)
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
/*Adds the parent items in the result array as well, so that we can
/*Adds the parent items in the result array as well, so that we can
expand the tree*/
expand the tree*/
return
[
NSMutableArray
arrayWithObject
:
[
NSValue
return
[
NSMutableArray
arrayWithObject
:
[
NSValue
...
@@ -1242,14 +1245,14 @@
...
@@ -1242,14 +1245,14 @@
p_item
->
pp_children
[
i_current
]];
p_item
->
pp_children
[
i_current
]];
if
(
o_result
!=
NULL
)
if
(
o_result
!=
NULL
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
[
o_result
insertObject
:
[
NSValue
valueWithPointer
:
[
o_result
insertObject
:
[
NSValue
valueWithPointer
:
p_item
->
pp_children
[
i_current
]]
atIndex
:
0
];
p_item
->
pp_children
[
i_current
]]
atIndex
:
0
];
return
o_result
;
return
o_result
;
}
}
}
}
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NULL
;
return
NULL
;
}
}
...
@@ -1296,7 +1299,7 @@
...
@@ -1296,7 +1299,7 @@
[
o_outline_view
selectRow
:
i_row
byExtendingSelection
:
NO
];
[
o_outline_view
selectRow
:
i_row
byExtendingSelection
:
NO
];
[
o_outline_view
scrollRowToVisible
:
i_row
];
[
o_outline_view
scrollRowToVisible
:
i_row
];
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
}
}
-
(
IBAction
)
recursiveExpandNode
:(
id
)
sender
-
(
IBAction
)
recursiveExpandNode
:(
id
)
sender
...
@@ -1356,7 +1359,7 @@
...
@@ -1356,7 +1359,7 @@
sortable table column*/
sortable table column*/
if
(
!
(
o_tc
==
o_tc_name
||
o_tc
==
o_tc_author
)
)
if
(
!
(
o_tc
==
o_tc_name
||
o_tc
==
o_tc_author
)
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
return
;
return
;
}
}
...
@@ -1391,7 +1394,7 @@
...
@@ -1391,7 +1394,7 @@
playlist_RecursiveNodeSort
(
p_playlist
,
p_playlist
->
p_root_category
,
i_mode
,
i_type
);
playlist_RecursiveNodeSort
(
p_playlist
,
p_playlist
->
p_root_category
,
i_mode
,
i_type
);
PL_UNLOCK
;
PL_UNLOCK
;
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
[
self
playlistUpdated
];
[
self
playlistUpdated
];
o_tc_sortColumn
=
o_tc
;
o_tc_sortColumn
=
o_tc
;
...
@@ -1434,7 +1437,7 @@
...
@@ -1434,7 +1437,7 @@
{
{
[
cell
setFont
:
[[
NSFontManager
sharedFontManager
]
convertFont
:[
cell
font
]
toNotHaveTrait
:
NSBoldFontMask
]];
[
cell
setFont
:
[[
NSFontManager
sharedFontManager
]
convertFont
:[
cell
font
]
toNotHaveTrait
:
NSBoldFontMask
]];
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
}
}
-
(
IBAction
)
addNode
:(
id
)
sender
-
(
IBAction
)
addNode
:(
id
)
sender
...
@@ -1508,7 +1511,7 @@
...
@@ -1508,7 +1511,7 @@
}
}
PL_UNLOCK
;
PL_UNLOCK
;
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
[
o_outline_dict
setObject
:
o_value
forKey
:[
NSString
stringWithFormat
:
@"%p"
,
[
o_outline_dict
setObject
:
o_value
forKey
:[
NSString
stringWithFormat
:
@"%p"
,
[
o_value
pointerValue
]]];
[
o_value
pointerValue
]]];
...
@@ -1541,7 +1544,7 @@
...
@@ -1541,7 +1544,7 @@
[
o_item
pointerValue
]
==
p_playlist
->
p_local_category
||
[
o_item
pointerValue
]
==
p_playlist
->
p_local_category
||
[
o_item
pointerValue
]
==
p_playlist
->
p_ml_category
)
[
o_item
pointerValue
]
==
p_playlist
->
p_ml_category
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NO
;
return
NO
;
}
}
/* Fill the items and nodes to move in 2 different arrays */
/* Fill the items and nodes to move in 2 different arrays */
...
@@ -1563,7 +1566,7 @@
...
@@ -1563,7 +1566,7 @@
@"VLCPlaylistItemPboardType"
,
nil
]
owner
:
self
];
@"VLCPlaylistItemPboardType"
,
nil
]
owner
:
self
];
[
pboard
setData
:[
NSData
data
]
forType
:
@"VLCPlaylistItemPboardType"
];
[
pboard
setData
:[
NSData
data
]
forType
:
@"VLCPlaylistItemPboardType"
];
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
YES
;
return
YES
;
}
}
...
@@ -1580,7 +1583,7 @@
...
@@ -1580,7 +1583,7 @@
if
(
index
==
NSOutlineViewDropOnItemIndex
&&
if
(
index
==
NSOutlineViewDropOnItemIndex
&&
((
playlist_item_t
*
)[
item
pointerValue
])
->
i_children
==
-
1
)
((
playlist_item_t
*
)[
item
pointerValue
])
->
i_children
==
-
1
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NSDragOperationNone
;
return
NSDragOperationNone
;
}
}
}
}
...
@@ -1588,7 +1591,7 @@
...
@@ -1588,7 +1591,7 @@
/* Don't allow on drop on playlist root element's child */
/* Don't allow on drop on playlist root element's child */
if
(
!
item
&&
index
!=
NSOutlineViewDropOnItemIndex
)
if
(
!
item
&&
index
!=
NSOutlineViewDropOnItemIndex
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NSDragOperationNone
;
return
NSDragOperationNone
;
}
}
...
@@ -1598,7 +1601,7 @@
...
@@ -1598,7 +1601,7 @@
if
(
!
(
([
self
isItem
:
[
item
pointerValue
]
inNode
:
p_playlist
->
p_local_category
checkItemExistence
:
NO
]
||
if
(
!
(
([
self
isItem
:
[
item
pointerValue
]
inNode
:
p_playlist
->
p_local_category
checkItemExistence
:
NO
]
||
(
var_CreateGetBool
(
p_playlist
,
"media-library"
)
&&
[
self
isItem
:
[
item
pointerValue
]
inNode
:
p_playlist
->
p_ml_category
checkItemExistence
:
NO
]
)
)
||
item
==
nil
)
)
(
var_CreateGetBool
(
p_playlist
,
"media-library"
)
&&
[
self
isItem
:
[
item
pointerValue
]
inNode
:
p_playlist
->
p_ml_category
checkItemExistence
:
NO
]
)
)
||
item
==
nil
)
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NSDragOperationNone
;
return
NSDragOperationNone
;
}
}
...
@@ -1613,21 +1616,21 @@
...
@@ -1613,21 +1616,21 @@
[[
o_nodes_array
objectAtIndex
:
i
]
pointerValue
]
[[
o_nodes_array
objectAtIndex
:
i
]
pointerValue
]
checkItemExistence:
NO
]
)
checkItemExistence:
NO
]
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NSDragOperationNone
;
return
NSDragOperationNone
;
}
}
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NSDragOperationMove
;
return
NSDragOperationMove
;
}
}
/* Drop from the Finder */
/* Drop from the Finder */
else
if
(
[[
o_pasteboard
types
]
containsObject
:
NSFilenamesPboardType
]
)
else
if
(
[[
o_pasteboard
types
]
containsObject
:
NSFilenamesPboardType
]
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NSDragOperationGeneric
;
return
NSDragOperationGeneric
;
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NSDragOperationNone
;
return
NSDragOperationNone
;
}
}
...
@@ -1654,7 +1657,7 @@
...
@@ -1654,7 +1657,7 @@
(This should never be true) */
(This should never be true) */
if
(
p_new_parent
->
i_children
<
0
)
if
(
p_new_parent
->
i_children
<
0
)
{
{
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NO
;
return
NO
;
}
}
...
@@ -1721,7 +1724,7 @@
...
@@ -1721,7 +1724,7 @@
[
o_outline_view
selectRow
:
i_row
byExtendingSelection
:
NO
];
[
o_outline_view
selectRow
:
i_row
byExtendingSelection
:
NO
];
[
o_outline_view
scrollRowToVisible
:
i_row
];
[
o_outline_view
scrollRowToVisible
:
i_row
];
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
YES
;
return
YES
;
}
}
...
@@ -1754,10 +1757,10 @@
...
@@ -1754,10 +1757,10 @@
[
self
appendNodeArray
:
o_array
inNode
:
p_node
[
self
appendNodeArray
:
o_array
inNode
:
p_node
atPos:
index
enqueue
:
YES
];
atPos:
index
enqueue
:
YES
];
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
YES
;
return
YES
;
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
VLCIntf
);
return
NO
;
return
NO
;
}
}
@end
@end
...
...
modules/gui/macosx/wizard.m
View file @
f2600dd0
...
@@ -1322,7 +1322,7 @@ static VLCWizard *_o_sharedInstance = nil;
...
@@ -1322,7 +1322,7 @@ static VLCWizard *_o_sharedInstance = nil;
x
+=
1
;
x
+=
1
;
}
}
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
/* close the window, since we are done */
/* close the window, since we are done */
[
o_wizard_window
close
];
[
o_wizard_window
close
];
...
...
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