Changeset 8501e4a23824813d95c036b398f89524245b55c5

Show
Ignore:
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
  • modules/gui/qt4/components/extended_panels.cpp

    r051aedc r8501e4a  
    625625    if( p_obj ) 
    626626    { 
    627         msg_Dbg( p_intf, "Found v4l2 instance" ); 
    628627        vlc_value_t val, text, name; 
    629628        int i_ret = var_Change( p_obj, "controls", VLC_VAR_GETCHOICES, 
     
    749748        ui.help->show(); 
    750749    } 
    751  
    752750} 
    753751 
  • modules/gui/qt4/components/interface_widgets.cpp

    r5bfcf59 r8501e4a  
    207207    { 
    208208        label->setPixmap( QPixmap( url ) ); 
    209         msg_Dbg( p_intf, "changing input b_need_update done "); 
    210209    } 
    211210} 
  • modules/gui/qt4/components/open_panels.cpp

    r26343f3 r8501e4a  
    10241024    int i_devicetype = ui.deviceCombo->itemData( 
    10251025                                ui.deviceCombo->currentIndex() ).toInt(); 
    1026     msg_Dbg( p_intf, "Capture Type: %i", i_devicetype ); 
    10271026    switch( i_devicetype ) 
    10281027    { 
  • modules/gui/qt4/dialogs/vlm.cpp

    raf2b9b2 r8501e4a  
    163163VLMDialog::~VLMDialog() 
    164164{ 
    165     msg_Dbg( p_intf, "Destroying VLM Dialog" ); 
    166165    delete vlmWrapper; 
    167166 
     
    205204    if( name.isEmpty() || !isNameGenuine( name ) ) 
    206205    { 
    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" ); 
    208207        return; 
    209208    } 
     
    352351        else 
    353352        { 
    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 ) ); 
    355354            return false; 
    356355        } 
     
    406405    if( currentIndex < 0 ) return; 
    407406 
    408     msg_Dbg( p_intf, "Type: %i", vlmObj->type ); 
    409407    ui.vlmListItem->setCurrentRow( currentIndex ); 
    410408    ui.nameLedit->setText( vlmObj->name ); 
  • modules/gui/qt4/qt4.cpp

    r54c23b6 r8501e4a  
    363363 
    364364#ifdef UPDATE_CHECK 
     365    /* Checking for VLC updates */ 
    365366    if( config_GetInt( p_intf, "qt-updates-notif" ) ) 
    366367    { 
     
    370371                settings.value( "updatedate" ).toDate().addDays( interval ) ) 
    371372        { 
    372             msg_Dbg( p_intf, "Someone said I need to check updates" ); 
    373373            /* The constructor of the update Dialog will do the 1st request */ 
    374374            UpdateDialog::getInstance( p_intf );