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
8501e4a2
Commit
8501e4a2
authored
Apr 05, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove debug.
parent
f69e62d2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
9 deletions
+3
-9
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/extended_panels.cpp
+0
-2
modules/gui/qt4/components/interface_widgets.cpp
modules/gui/qt4/components/interface_widgets.cpp
+0
-1
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.cpp
+0
-1
modules/gui/qt4/dialogs/vlm.cpp
modules/gui/qt4/dialogs/vlm.cpp
+2
-4
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+1
-1
No files found.
modules/gui/qt4/components/extended_panels.cpp
View file @
8501e4a2
...
...
@@ -624,7 +624,6 @@ void ExtV4l2::Refresh( void )
}
if
(
p_obj
)
{
msg_Dbg
(
p_intf
,
"Found v4l2 instance"
);
vlc_value_t
val
,
text
,
name
;
int
i_ret
=
var_Change
(
p_obj
,
"controls"
,
VLC_VAR_GETCHOICES
,
&
val
,
&
text
);
...
...
@@ -748,7 +747,6 @@ void ExtV4l2::Refresh( void )
msg_Dbg
(
p_intf
,
"Couldn't find v4l2 instance"
);
ui
.
help
->
show
();
}
}
void
ExtV4l2
::
ValueChange
(
bool
value
)
...
...
modules/gui/qt4/components/interface_widgets.cpp
View file @
8501e4a2
...
...
@@ -206,7 +206,6 @@ void BackgroundWidget::updateArt( QString url )
else
{
label
->
setPixmap
(
QPixmap
(
url
)
);
msg_Dbg
(
p_intf
,
"changing input b_need_update done "
);
}
}
...
...
modules/gui/qt4/components/open_panels.cpp
View file @
8501e4a2
...
...
@@ -1023,7 +1023,6 @@ void CaptureOpenPanel::updateButtons()
/* Get the current Device Number */
int
i_devicetype
=
ui
.
deviceCombo
->
itemData
(
ui
.
deviceCombo
->
currentIndex
()
).
toInt
();
msg_Dbg
(
p_intf
,
"Capture Type: %i"
,
i_devicetype
);
switch
(
i_devicetype
)
{
#ifdef WIN32
...
...
modules/gui/qt4/dialogs/vlm.cpp
View file @
8501e4a2
...
...
@@ -162,7 +162,6 @@ VLMDialog::VLMDialog( QWidget *parent, intf_thread_t *_p_intf ) : QVLCDialog( pa
VLMDialog
::~
VLMDialog
()
{
msg_Dbg
(
p_intf
,
"Destroying VLM Dialog"
);
delete
vlmWrapper
;
/* FIXME :you have to destroy vlm here to close
...
...
@@ -204,7 +203,7 @@ void VLMDialog::addVLMItem()
QString
name
=
ui
.
nameLedit
->
text
();
if
(
name
.
isEmpty
()
||
!
isNameGenuine
(
name
)
)
{
msg_
Dbg
(
p_intf
,
"VLM Name is empty or already exists, I can't do it"
);
msg_
Err
(
p_intf
,
"VLM Name is empty or already exists, I can't do it"
);
return
;
}
...
...
@@ -351,7 +350,7 @@ bool VLMDialog::importVLMConf()
}
else
{
msg_
Dbg
(
p_intf
,
"Failed to import vlm configuration file : %s"
,
qtu
(
command
)
);
msg_
Warn
(
p_intf
,
"Failed to import vlm configuration file : %s"
,
qtu
(
command
)
);
return
false
;
}
return
true
;
...
...
@@ -405,7 +404,6 @@ void VLMDialog::startModifyVLMItem( VLMAWidget *vlmObj )
currentIndex
=
vlmItems
.
indexOf
(
vlmObj
);
if
(
currentIndex
<
0
)
return
;
msg_Dbg
(
p_intf
,
"Type: %i"
,
vlmObj
->
type
);
ui
.
vlmListItem
->
setCurrentRow
(
currentIndex
);
ui
.
nameLedit
->
setText
(
vlmObj
->
name
);
ui
.
inputLedit
->
setText
(
vlmObj
->
input
);
...
...
modules/gui/qt4/qt4.cpp
View file @
8501e4a2
...
...
@@ -362,6 +362,7 @@ static void Init( intf_thread_t *p_intf )
:
p_intf
->
p_libvlc
->
psz_homedir
;
#ifdef UPDATE_CHECK
/* Checking for VLC updates */
if
(
config_GetInt
(
p_intf
,
"qt-updates-notif"
)
)
{
int
interval
=
config_GetInt
(
p_intf
,
"qt-updates-days"
);
...
...
@@ -369,7 +370,6 @@ static void Init( intf_thread_t *p_intf )
if
(
QDate
::
currentDate
()
>
settings
.
value
(
"updatedate"
).
toDate
().
addDays
(
interval
)
)
{
msg_Dbg
(
p_intf
,
"Someone said I need to check updates"
);
/* The constructor of the update Dialog will do the 1st request */
UpdateDialog
::
getInstance
(
p_intf
);
settings
.
setValue
(
"updatedate"
,
QDate
::
currentDate
()
);
...
...
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