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.
42 lines
675 B
42 lines
675 B
//
|
|
// C++ Implementation: KmdrMainWindow
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Andras Mantia <amantia@kdewebdev.org>, (C) 2008
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "kmdrmainwindow.h"
|
|
|
|
#include <tqtimer.h>
|
|
|
|
KmdrMainWindow::KmdrMainWindow(TQWidget *parent, const char *name, WFlags f)
|
|
: TDEMainWindow(parent, name, f)
|
|
{
|
|
TQTimer::singleShot(10, this, TQ_SIGNAL(initialize()));
|
|
}
|
|
|
|
|
|
KmdrMainWindow::~KmdrMainWindow()
|
|
{
|
|
}
|
|
|
|
bool KmdrMainWindow::queryClose()
|
|
{
|
|
bool quit = TDEMainWindow::queryClose();
|
|
if (quit)
|
|
emit destroy();
|
|
return quit;
|
|
}
|
|
|
|
|
|
#include "kmdrmainwindow.moc"
|