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.
27 lines
402 B
27 lines
402 B
#include <tdeparts/part.h>
|
|
#include <klibloader.h>
|
|
#include <kurl.h>
|
|
#include <kdebug.h>
|
|
|
|
|
|
#include <kdevcore.h>
|
|
|
|
|
|
#include "pascalproject_part.h"
|
|
#include "pascalproject_widget.h"
|
|
|
|
|
|
PascalProjectWidget::PascalProjectWidget(PascalProjectPart *part)
|
|
: TQWidget(0, "PascalProject widget")
|
|
{
|
|
Q_UNUSED( part );
|
|
}
|
|
|
|
|
|
PascalProjectWidget::~PascalProjectWidget()
|
|
{
|
|
}
|
|
|
|
|
|
#include "pascalproject_widget.moc"
|