Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
c63d077d
Commit
c63d077d
authored
Dec 02, 2004
by
bigben
Browse files
* fixes item deletion when pressing backspace. Doesn't work for nodes yet
parent
50f6b0f6
Changes
4
Hide whitespace changes
Inline
Side-by-side
extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
View file @
c63d077d
...
...
@@ -6,7 +6,6 @@
ACTIONS = {showPanel = id; };
CLASS = VLAboutBox;
LANGUAGE = ObjC;
OUTLETS = {};
SUPERCLASS = NSObject;
},
{CLASS = VLBrushedMetalImageView; LANGUAGE = ObjC; SUPERCLASS = NSImageView; },
...
...
@@ -413,7 +412,7 @@
};
SUPERCLASS = NSObject;
},
{CLASS = VLCPlaylistView; LANGUAGE = ObjC; SUPERCLASS = NS
Tabl
eView; },
{CLASS = VLCPlaylistView; LANGUAGE = ObjC; SUPERCLASS = NS
Outlin
eView; },
{
ACTIONS = {advancedToggle = id; closePrefs = id; resetAll = id; savePrefs = id; };
CLASS = VLCPrefs;
...
...
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
View file @
c63d077d
...
...
@@ -9,9 +9,9 @@
<key>
1617
</key>
<string>
542 480 104 149 0 0 1024 746
</string>
<key>
2197
</key>
<string>
102 199
596 36
8
0 0
800 578
</string>
<string>
237 313
596 36
7
0 0
1024 746
</string>
<key>
29
</key>
<string>
53 50
7 419 44 0 0
800 578
</string>
<string>
84 66
7 419 44 0 0
1024 746
</string>
<key>
915
</key>
<string>
54 452 185 199 0 0 1024 746
</string>
</dict>
...
...
@@ -27,9 +27,9 @@
</array>
<key>
IBOpenObjects
</key>
<array>
<integer>
2197
</integer>
<integer>
29
</integer>
<integer>
21
</integer>
<integer>
29
</integer>
<integer>
2197
</integer>
</array>
<key>
IBSystem Version
</key>
<string>
7R28
</string>
...
...
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
View file @
c63d077d
No preview for this file type
modules/gui/macosx/playlist.m
View file @
c63d077d
...
...
@@ -98,6 +98,7 @@ msg_Dbg( p_intf, "KEYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY");
c
=
[
o_to_delete
count
];
for
(
i
=
0
;
i
<
c
;
i
++
)
{
playlist_item_t
*
p_item
;
o_number
=
[
o_to_delete
lastObject
];
i_row
=
[
o_number
intValue
];
...
...
@@ -107,7 +108,9 @@ msg_Dbg( p_intf, "KEYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY");
}
[
o_to_delete
removeObject
:
o_number
];
[
self
deselectRow
:
i_row
];
playlist_ItemDelete
(
[[
self
itemAtRow
:
i_row
]
pointerValue
]
);
p_item
=
(
playlist_item_t
*
)[[
self
itemAtRow
:
i_row
]
pointerValue
];
playlist_Delete
(
p_playlist
,
p_item
->
input
.
i_id
);
[
self
reloadData
];
}
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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