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
c63d077d
Commit
c63d077d
authored
Dec 02, 2004
by
Benjamin Pracht
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fixes item deletion when pressing backspace. Doesn't work for nodes yet
parent
50f6b0f6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
7 deletions
+9
-7
extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
...s/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
+1
-2
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
+4
-4
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
...s/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
+0
-0
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+4
-1
No files found.
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 368 0 0 800 578
</string>
<string>
237 313 596 367 0 0 1024 746
</string>
<key>
29
</key>
<string>
53 507 419 44 0 0 800 578
</string>
<string>
84 667 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
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