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.
25 lines
370 B
25 lines
370 B
15 years ago
|
#include <kparts/part.h>
|
||
|
#include <klibloader.h>
|
||
|
#include <kurl.h>
|
||
|
#include <kdebug.h>
|
||
|
|
||
|
#include <kdevcore.h>
|
||
|
|
||
|
#include "adaproject_part.h"
|
||
|
#include "adaproject_widget.h"
|
||
|
|
||
|
|
||
|
AdaProjectWidget::AdaProjectWidget(AdaProjectPart *part)
|
||
|
: QWidget(0, "AdaProject widget")
|
||
|
{
|
||
|
Q_UNUSED( part );
|
||
|
}
|
||
|
|
||
|
|
||
|
AdaProjectWidget::~AdaProjectWidget()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
#include "adaproject_widget.moc"
|