|
|
|
@ -82,14 +82,14 @@ void KviDccAcceptBox::acceptClicked()
|
|
|
|
|
{
|
|
|
|
|
hide();
|
|
|
|
|
emit accepted(this,m_pDescriptor);
|
|
|
|
|
g_pApp->collectGarbage(TQT_TQOBJECT(this));
|
|
|
|
|
g_pApp->collectGarbage(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void KviDccAcceptBox::rejectClicked()
|
|
|
|
|
{
|
|
|
|
|
hide();
|
|
|
|
|
emit rejected(this,m_pDescriptor);
|
|
|
|
|
g_pApp->collectGarbage(TQT_TQOBJECT(this));
|
|
|
|
|
g_pApp->collectGarbage(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void KviDccAcceptBox::closeEvent(TQCloseEvent *e)
|
|
|
|
@ -97,7 +97,7 @@ void KviDccAcceptBox::closeEvent(TQCloseEvent *e)
|
|
|
|
|
hide();
|
|
|
|
|
e->ignore();
|
|
|
|
|
emit rejected(this,m_pDescriptor);
|
|
|
|
|
g_pApp->collectGarbage(TQT_TQOBJECT(this));
|
|
|
|
|
g_pApp->collectGarbage(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void KviDccAcceptBox::showEvent(TQShowEvent *e)
|
|
|
|
@ -154,7 +154,7 @@ void KviDccRenameBox::closeEvent(TQCloseEvent *e)
|
|
|
|
|
if(m_pDescriptor)
|
|
|
|
|
{
|
|
|
|
|
emit cancelSelected(this,m_pDescriptor);
|
|
|
|
|
g_pApp->collectGarbage(TQT_TQOBJECT(this));
|
|
|
|
|
g_pApp->collectGarbage(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -169,14 +169,14 @@ void KviDccRenameBox::renameClicked()
|
|
|
|
|
{
|
|
|
|
|
hide();
|
|
|
|
|
emit renameSelected(this,m_pDescriptor);
|
|
|
|
|
g_pApp->collectGarbage(TQT_TQOBJECT(this));
|
|
|
|
|
g_pApp->collectGarbage(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void KviDccRenameBox::overwriteClicked()
|
|
|
|
|
{
|
|
|
|
|
hide();
|
|
|
|
|
emit overwriteSelected(this,m_pDescriptor);
|
|
|
|
|
g_pApp->collectGarbage(TQT_TQOBJECT(this));
|
|
|
|
|
g_pApp->collectGarbage(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void KviDccRenameBox::resumeClicked()
|
|
|
|
@ -184,14 +184,14 @@ void KviDccRenameBox::resumeClicked()
|
|
|
|
|
hide();
|
|
|
|
|
m_pDescriptor->bResume = true;
|
|
|
|
|
emit overwriteSelected(this,m_pDescriptor);
|
|
|
|
|
g_pApp->collectGarbage(TQT_TQOBJECT(this));
|
|
|
|
|
g_pApp->collectGarbage(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void KviDccRenameBox::cancelClicked()
|
|
|
|
|
{
|
|
|
|
|
hide();
|
|
|
|
|
emit cancelSelected(this,m_pDescriptor);
|
|
|
|
|
g_pApp->collectGarbage(TQT_TQOBJECT(this));
|
|
|
|
|
g_pApp->collectGarbage(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|