blob: a5b1cc4b4780e03d8432b9ec9934db6d104ca2e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/*
**************************************************************************
description
--------------------
copyright : (C) 2003 by Leon Pennington
email : leon@leonscape.co.uk
**************************************************************************
**************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
**************************************************************************/
#include "pminteriortextureedit.h"
#include "pminteriortexture.h"
#include "pmlinkedit.h"
#include <tqlayout.h>
#include <tqlabel.h>
#include <tdelocale.h>
PMInteriorTextureEdit::PMInteriorTextureEdit( TQWidget* parent, const char* name )
: Base( parent, name )
{
m_pDisplayedObject = 0;
}
void PMInteriorTextureEdit::displayObject( PMObject* o )
{
if( o->isA( "InteriorTexture" ) )
{
Base::displayObject( o );
}
else
kdError( PMArea ) << "PMInteriorTextureEdit: Can't display object\n";
}
#include "pminteriortextureedit.moc"
|