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.
28 lines
505 B
28 lines
505 B
15 years ago
|
/*
|
||
|
* Copyright (C) 2003 Julian Rockey <kde@jrockey.com>
|
||
|
*/
|
||
|
|
||
11 years ago
|
#include "tdedcoptest.h"
|
||
15 years ago
|
|
||
14 years ago
|
#include <tqlabel.h>
|
||
15 years ago
|
|
||
12 years ago
|
#include <tdemainwindow.h>
|
||
12 years ago
|
#include <tdelocale.h>
|
||
15 years ago
|
|
||
|
KDEDcopTest::KDEDcopTest()
|
||
12 years ago
|
: TDEMainWindow( 0, "KDEDcopTest" )
|
||
15 years ago
|
{
|
||
|
// set the shell's ui resource file
|
||
11 years ago
|
//setXMLFile("tdedcoptestui.rc");
|
||
15 years ago
|
|
||
13 years ago
|
//new TQLabel( "Hello World", this, "hello label" );
|
||
15 years ago
|
m_mainClass = new MainClass();
|
||
|
}
|
||
|
|
||
|
KDEDcopTest::~KDEDcopTest()
|
||
|
{
|
||
|
if (m_mainClass) delete m_mainClass;
|
||
|
}
|
||
|
|
||
11 years ago
|
#include "tdedcoptest.moc"
|