You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
490 B
30 lines
490 B
//
|
|
// C++ Implementation: kxefilenewdialog
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Adam Charytoniuk <achary@poczta.onet.pl>, (C) 2003
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#include "kxefilenewdialog.h"
|
|
|
|
#include <tqcheckbox.h>
|
|
#include <tqframe.h>
|
|
|
|
KXEFileNewDialog::KXEFileNewDialog(TQWidget* parent, const char* name)
|
|
: KXESpecProcInstrDialog(parent, name)
|
|
{
|
|
m_pDontShowAgain->show();
|
|
m_pHLine->show();
|
|
}
|
|
|
|
|
|
KXEFileNewDialog::~KXEFileNewDialog()
|
|
{
|
|
}
|
|
|
|
|