diff options
Diffstat (limited to 'kpresenter/KPrPolygonProperty.cpp')
-rw-r--r-- | kpresenter/KPrPolygonProperty.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kpresenter/KPrPolygonProperty.cpp b/kpresenter/KPrPolygonProperty.cpp index 69405b99..fe303a0b 100644 --- a/kpresenter/KPrPolygonProperty.cpp +++ b/kpresenter/KPrPolygonProperty.cpp @@ -20,7 +20,7 @@ #include "KPrPolygonProperty.h" -#include <layout.h> +#include <tqlayout.h> #include <kcombobox.h> #include <klocale.h> @@ -33,8 +33,8 @@ KPrPolygonProperty::KPrPolygonProperty( TQWidget *parent, const char *name, KPrP : TQWidget( parent, name ) , m_polygonSettings( polygonSettings ) { - TQVBoxLayout *layout = new TQVBoxLayout( this ); - layout->addWidget( m_ui = new PolygonPropertyUI( this ) ); + TQVBoxLayout *tqlayout = new TQVBoxLayout( this ); + tqlayout->addWidget( m_ui = new PolygonPropertyUI( this ) ); m_ui->typeCombo->insertItem( i18n( "Polygon" ) ); m_ui->typeCombo->insertItem( i18n( "Convex/Concave" ) ); |