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
4119f97f
Commit
4119f97f
authored
Oct 21, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt compile fix
parent
bd2e2e8d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
modules/gui/qt4/components/preferences_widgets.cpp
modules/gui/qt4/components/preferences_widgets.cpp
+1
-1
modules/gui/qt4/components/preferences_widgets.hpp
modules/gui/qt4/components/preferences_widgets.hpp
+3
-3
No files found.
modules/gui/qt4/components/preferences_widgets.cpp
View file @
4119f97f
...
@@ -819,7 +819,7 @@ void KeySelectorControl::doApply()
...
@@ -819,7 +819,7 @@ void KeySelectorControl::doApply()
}
}
KeyInputDialog
::
KeyInputDialog
(
QList
<
module_config_t
*>&
_values
,
KeyInputDialog
::
KeyInputDialog
(
QList
<
module_config_t
*>&
_values
,
char
*
_keyToChange
)
:
c
onst
c
har
*
_keyToChange
)
:
QDialog
(
0
),
keyValue
(
0
)
QDialog
(
0
),
keyValue
(
0
)
{
{
setModal
(
true
);
setModal
(
true
);
...
...
modules/gui/qt4/components/preferences_widgets.hpp
View file @
4119f97f
...
@@ -55,7 +55,7 @@ public:
...
@@ -55,7 +55,7 @@ public:
}
}
virtual
~
ConfigControl
()
{};
virtual
~
ConfigControl
()
{};
virtual
int
getType
()
=
0
;
virtual
int
getType
()
=
0
;
char
*
getName
()
{
return
p_item
->
psz_name
;
}
c
onst
c
har
*
getName
()
{
return
p_item
->
psz_name
;
}
QWidget
*
getWidget
()
{
assert
(
widget
);
return
widget
;
}
QWidget
*
getWidget
()
{
assert
(
widget
);
return
widget
;
}
bool
isAdvanced
()
{
return
p_item
->
b_advanced
;
}
bool
isAdvanced
()
{
return
p_item
->
b_advanced
;
}
virtual
void
hide
()
{
getWidget
()
->
hide
();
};
virtual
void
hide
()
{
getWidget
()
->
hide
();
};
...
@@ -315,14 +315,14 @@ private slot:
...
@@ -315,14 +315,14 @@ private slot:
class
KeyInputDialog
:
public
QDialog
class
KeyInputDialog
:
public
QDialog
{
{
public:
public:
KeyInputDialog
(
QList
<
module_config_t
*>
&
,
char
*
);
KeyInputDialog
(
QList
<
module_config_t
*>
&
,
c
onst
c
har
*
);
int
keyValue
;
int
keyValue
;
bool
conflicts
;
bool
conflicts
;
private:
private:
void
keyPressEvent
(
QKeyEvent
*
);
void
keyPressEvent
(
QKeyEvent
*
);
QLabel
*
selected
;
QLabel
*
selected
;
QLabel
*
warning
;
QLabel
*
warning
;
char
*
keyToChange
;
c
onst
c
har
*
keyToChange
;
QList
<
module_config_t
*>
values
;
QList
<
module_config_t
*>
values
;
};
};
...
...
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