lyx_mirror/src/frontends/kde/copyrightdlg.C
John Levon 6b219fc94a renaming, fix citation (still no search though)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1903 a592a061-630c-0410-9148-cb99ea01b6c8
2001-04-05 14:41:19 +00:00

37 lines
546 B
C

/**
* \file copyrightdlg.C
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author John Levon
*/
#include <config.h>
#include "FormCopyright.h"
#include "copyrightdlg.h"
CopyrightDialog::CopyrightDialog(FormCopyright * f, QWidget * parent, char const * name)
: CopyrightDialogData(parent, name), form_(f)
{
setCaption(name);
}
CopyrightDialog::~CopyrightDialog()
{
}
void CopyrightDialog::clickedOK()
{
form_->OKButton();
}
void CopyrightDialog::closeEvent(QCloseEvent * e)
{
form_->CancelButton();
e->accept();
}