Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
55bd6c18
Commit
55bd6c18
authored
Feb 02, 2009
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i18n: Fix in the popup menu
Pointed-By: Eric Lassauge
parent
76f34d99
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
modules/gui/qt4/components/playlist/playlist_model.cpp
modules/gui/qt4/components/playlist/playlist_model.cpp
+8
-8
No files found.
modules/gui/qt4/components/playlist/playlist_model.cpp
View file @
55bd6c18
...
@@ -796,21 +796,21 @@ void PLModel::popup( QModelIndex & index, QPoint &point, QModelIndexList list )
...
@@ -796,21 +796,21 @@ void PLModel::popup( QModelIndex & index, QPoint &point, QModelIndexList list )
PL_UNLOCK
;
PL_UNLOCK
;
current_selection
=
list
;
current_selection
=
list
;
QMenu
*
menu
=
new
QMenu
;
QMenu
*
menu
=
new
QMenu
;
menu
->
addAction
(
q
fu
(
I_POP_PLAY
),
this
,
SLOT
(
popupPlay
()
)
);
menu
->
addAction
(
q
tr
(
I_POP_PLAY
),
this
,
SLOT
(
popupPlay
()
)
);
menu
->
addAction
(
q
fu
(
I_POP_DEL
),
this
,
SLOT
(
popupDel
()
)
);
menu
->
addAction
(
q
tr
(
I_POP_DEL
),
this
,
SLOT
(
popupDel
()
)
);
menu
->
addSeparator
();
menu
->
addSeparator
();
menu
->
addAction
(
q
fu
(
I_POP_STREAM
),
this
,
SLOT
(
popupStream
()
)
);
menu
->
addAction
(
q
tr
(
I_POP_STREAM
),
this
,
SLOT
(
popupStream
()
)
);
menu
->
addAction
(
q
fu
(
I_POP_SAVE
),
this
,
SLOT
(
popupSave
()
)
);
menu
->
addAction
(
q
tr
(
I_POP_SAVE
),
this
,
SLOT
(
popupSave
()
)
);
menu
->
addSeparator
();
menu
->
addSeparator
();
menu
->
addAction
(
q
fu
(
I_POP_INFO
),
this
,
SLOT
(
popupInfo
()
)
);
menu
->
addAction
(
q
tr
(
I_POP_INFO
),
this
,
SLOT
(
popupInfo
()
)
);
if
(
p_item
->
i_children
>
-
1
)
if
(
p_item
->
i_children
>
-
1
)
{
{
menu
->
addSeparator
();
menu
->
addSeparator
();
menu
->
addAction
(
q
fu
(
I_POP_SORT
),
this
,
SLOT
(
popupSort
()
)
);
menu
->
addAction
(
q
tr
(
I_POP_SORT
),
this
,
SLOT
(
popupSort
()
)
);
menu
->
addAction
(
q
fu
(
I_POP_ADD
),
this
,
SLOT
(
popupAdd
()
)
);
menu
->
addAction
(
q
tr
(
I_POP_ADD
),
this
,
SLOT
(
popupAdd
()
)
);
}
}
menu
->
addSeparator
();
menu
->
addSeparator
();
menu
->
addAction
(
q
fu
(
I_POP_EXPLORE
),
this
,
SLOT
(
popupExplore
()
)
);
menu
->
addAction
(
q
tr
(
I_POP_EXPLORE
),
this
,
SLOT
(
popupExplore
()
)
);
menu
->
popup
(
point
);
menu
->
popup
(
point
);
}
}
else
else
...
...
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