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
f5d10727
Commit
f5d10727
authored
Apr 09, 2009
by
Jean-Baptiste Kempf
Browse files
Qt: fix crashes possible in Hotkey settings.
parent
0310df17
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/components/preferences_widgets.cpp
View file @
f5d10727
...
...
@@ -1248,6 +1248,7 @@ void KeySelectorControl::finish()
void
KeySelectorControl
::
select1Key
()
{
QTreeWidgetItem
*
keyItem
=
table
->
currentItem
();
if
(
!
keyItem
)
return
;
shortcutValue
->
setText
(
keyItem
->
text
(
1
)
);
shortcutValue
->
setValue
(
keyItem
->
data
(
1
,
Qt
::
UserRole
).
toInt
()
);
}
...
...
@@ -1293,6 +1294,7 @@ void KeySelectorControl::selectKey( QTreeWidgetItem *keyItem )
void
KeySelectorControl
::
setTheKey
()
{
if
(
!
table
->
currentItem
()
)
return
;
table
->
currentItem
()
->
setText
(
1
,
shortcutValue
->
text
()
);
table
->
currentItem
()
->
setData
(
1
,
Qt
::
UserRole
,
shortcutValue
->
getValue
()
);
}
...
...
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