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.
tdewebdev/kommander/widget/kmdrmainwindow.cpp

37 lines
626 B

//
// C++ Implementation: KmdrMainWindow
//
// Description:
//
//
// Author: Andras Mantia <amantia@tdewebdev.org>, (C) 2008
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "kmdrmainwindow.h"
#include <tqtimer.h>
KmdrMainWindow::KmdrMainWindow(TQWidget *parent, const char *name, WFlags f)
: TDEMainWindow(parent, name, f)
{
TQTimer::singleShot(10, this, TQT_SIGNAL(initialize()));
}
KmdrMainWindow::~KmdrMainWindow()
{
}
bool KmdrMainWindow::queryClose()
{
bool quit = TDEMainWindow::queryClose();
if (quit)
emit destroy();
return quit;
}
#include "kmdrmainwindow.moc"