Changeset 8501e4a23824813d95c036b398f89524245b55c5
- Timestamp:
- 06/04/08 02:21:56
(6 months ago)
- Author:
- Jean-Baptiste Kempf <jb@videolan.org>
- git-committer:
- Jean-Baptiste Kempf <jb@videolan.org> 1207441316 -0700
- git-parent:
[f69e62d2dfe39cea8fc8e587422c733c49444e0c]
- git-author:
- Jean-Baptiste Kempf <jb@videolan.org> 1207441316 -0700
- Message:
Remove debug.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r051aedc |
r8501e4a |
|
| 625 | 625 | if( p_obj ) |
|---|
| 626 | 626 | { |
|---|
| 627 | | msg_Dbg( p_intf, "Found v4l2 instance" ); |
|---|
| 628 | 627 | vlc_value_t val, text, name; |
|---|
| 629 | 628 | int i_ret = var_Change( p_obj, "controls", VLC_VAR_GETCHOICES, |
|---|
| … | … | |
| 749 | 748 | ui.help->show(); |
|---|
| 750 | 749 | } |
|---|
| 751 | | |
|---|
| 752 | 750 | } |
|---|
| 753 | 751 | |
|---|
| r5bfcf59 |
r8501e4a |
|
| 207 | 207 | { |
|---|
| 208 | 208 | label->setPixmap( QPixmap( url ) ); |
|---|
| 209 | | msg_Dbg( p_intf, "changing input b_need_update done "); |
|---|
| 210 | 209 | } |
|---|
| 211 | 210 | } |
|---|
| r26343f3 |
r8501e4a |
|
| 1024 | 1024 | int i_devicetype = ui.deviceCombo->itemData( |
|---|
| 1025 | 1025 | ui.deviceCombo->currentIndex() ).toInt(); |
|---|
| 1026 | | msg_Dbg( p_intf, "Capture Type: %i", i_devicetype ); |
|---|
| 1027 | 1026 | switch( i_devicetype ) |
|---|
| 1028 | 1027 | { |
|---|
| raf2b9b2 |
r8501e4a |
|
| 163 | 163 | VLMDialog::~VLMDialog() |
|---|
| 164 | 164 | { |
|---|
| 165 | | msg_Dbg( p_intf, "Destroying VLM Dialog" ); |
|---|
| 166 | 165 | delete vlmWrapper; |
|---|
| 167 | 166 | |
|---|
| … | … | |
| 205 | 204 | if( name.isEmpty() || !isNameGenuine( name ) ) |
|---|
| 206 | 205 | { |
|---|
| 207 | | msg_Dbg( p_intf, "VLM Name is empty or already exists, I can't do it" ); |
|---|
| | 206 | msg_Err( p_intf, "VLM Name is empty or already exists, I can't do it" ); |
|---|
| 208 | 207 | return; |
|---|
| 209 | 208 | } |
|---|
| … | … | |
| 352 | 351 | else |
|---|
| 353 | 352 | { |
|---|
| 354 | | msg_Dbg( p_intf, "Failed to import vlm configuration file : %s", qtu( command ) ); |
|---|
| | 353 | msg_Warn( p_intf, "Failed to import vlm configuration file : %s", qtu( command ) ); |
|---|
| 355 | 354 | return false; |
|---|
| 356 | 355 | } |
|---|
| … | … | |
| 406 | 405 | if( currentIndex < 0 ) return; |
|---|
| 407 | 406 | |
|---|
| 408 | | msg_Dbg( p_intf, "Type: %i", vlmObj->type ); |
|---|
| 409 | 407 | ui.vlmListItem->setCurrentRow( currentIndex ); |
|---|
| 410 | 408 | ui.nameLedit->setText( vlmObj->name ); |
|---|
| r54c23b6 |
r8501e4a |
|
| 363 | 363 | |
|---|
| 364 | 364 | #ifdef UPDATE_CHECK |
|---|
| | 365 | /* Checking for VLC updates */ |
|---|
| 365 | 366 | if( config_GetInt( p_intf, "qt-updates-notif" ) ) |
|---|
| 366 | 367 | { |
|---|
| … | … | |
| 370 | 371 | settings.value( "updatedate" ).toDate().addDays( interval ) ) |
|---|
| 371 | 372 | { |
|---|
| 372 | | msg_Dbg( p_intf, "Someone said I need to check updates" ); |
|---|
| 373 | 373 | /* The constructor of the update Dialog will do the 1st request */ |
|---|
| 374 | 374 | UpdateDialog::getInstance( p_intf ); |
|---|