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
73245897
Commit
73245897
authored
Oct 11, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: close() slot problem fixed.
parent
b5c33444
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
modules/gui/qt4/dialogs/vlm.cpp
modules/gui/qt4/dialogs/vlm.cpp
+3
-1
modules/gui/qt4/dialogs/vlm.hpp
modules/gui/qt4/dialogs/vlm.hpp
+0
-3
No files found.
modules/gui/qt4/dialogs/vlm.cpp
View file @
73245897
...
...
@@ -82,7 +82,9 @@ VLMDialog::VLMDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
ui
.
buttonBox
->
addButton
(
closeButton
,
QDialogButtonBox
::
AcceptRole
);
ui
.
buttonBox
->
addButton
(
cancelButton
,
QDialogButtonBox
::
RejectRole
);
connect
(
mediatype
,
SIGNAL
(
currentIndexChanged
(
int
)
),
slayout
,
SLOT
(
setCurrentIndex
(
int
)
)
);
CONNECT
(
mediatype
,
currentIndexChanged
(
int
),
slayout
,
setCurrentIndex
(
int
)
);
CONNECT
(
closeButton
,
clicked
(),
this
,
hide
()
);
}
...
...
modules/gui/qt4/dialogs/vlm.hpp
View file @
73245897
...
...
@@ -87,9 +87,6 @@ private:
QDateEdit
*
date
;
QLabel
*
schetimelabel
,
*
schedatelabel
,
*
schetimerepeat
;
QSpinBox
*
scherepeatnumber
;
private
slots
:
void
close
();
};
#endif
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