|
|
|
@ -218,19 +218,19 @@ void K3bVideoDVDRippingView::initActions()
|
|
|
|
|
{
|
|
|
|
|
m_actionCollection = new KActionCollection( this );
|
|
|
|
|
|
|
|
|
|
KAction* actionSelectAll = new KAction( i18n("Check All"), 0, 0, this,
|
|
|
|
|
KAction* actionSelectAll = new KAction( i18n("Check All"), 0, 0, TQT_TQOBJECT(this),
|
|
|
|
|
TQT_SLOT(slotCheckAll()), actionCollection(),
|
|
|
|
|
"check_all" );
|
|
|
|
|
KAction* actionDeselectAll = new KAction( i18n("Uncheck All"), 0, 0, this,
|
|
|
|
|
KAction* actionDeselectAll = new KAction( i18n("Uncheck All"), 0, 0, TQT_TQOBJECT(this),
|
|
|
|
|
TQT_SLOT(slotUncheckAll()), actionCollection(),
|
|
|
|
|
"uncheck_all" );
|
|
|
|
|
KAction* actionSelect = new KAction( i18n("Check Track"), 0, 0, this,
|
|
|
|
|
KAction* actionSelect = new KAction( i18n("Check Track"), 0, 0, TQT_TQOBJECT(this),
|
|
|
|
|
TQT_SLOT(slotCheck()), actionCollection(),
|
|
|
|
|
"select_track" );
|
|
|
|
|
KAction* actionDeselect = new KAction( i18n("Uncheck Track"), 0, 0, this,
|
|
|
|
|
KAction* actionDeselect = new KAction( i18n("Uncheck Track"), 0, 0, TQT_TQOBJECT(this),
|
|
|
|
|
TQT_SLOT(slotUncheck()), actionCollection(),
|
|
|
|
|
"deselect_track" );
|
|
|
|
|
KAction* actionStartRip = new KAction( i18n("Start Ripping"), "gear", 0, this,
|
|
|
|
|
KAction* actionStartRip = new KAction( i18n("Start Ripping"), "gear", 0, TQT_TQOBJECT(this),
|
|
|
|
|
TQT_SLOT(slotStartRipping()), m_actionCollection, "start_rip" );
|
|
|
|
|
|
|
|
|
|
actionStartRip->setToolTip( i18n("Open the Video DVD ripping dialog") );
|
|
|
|
|