summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrGeneralProperty.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpresenter/KPrGeneralProperty.cpp')
-rw-r--r--kpresenter/KPrGeneralProperty.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kpresenter/KPrGeneralProperty.cpp b/kpresenter/KPrGeneralProperty.cpp
index e82defcc..89cf00ab 100644
--- a/kpresenter/KPrGeneralProperty.cpp
+++ b/kpresenter/KPrGeneralProperty.cpp
@@ -22,7 +22,7 @@
#include <tqcheckbox.h>
#include <tqgroupbox.h>
#include <tqlabel.h>
-#include <layout.h>
+#include <tqlayout.h>
#include <tqlineedit.h>
#include <knuminput.h>
@@ -37,11 +37,11 @@ KPrGeneralProperty::KPrGeneralProperty( TQWidget *parent, const char *name, Gene
, m_generalValue( generalValue )
, m_unit( unit )
{
- TQVBoxLayout *layout = new TQVBoxLayout( this );
- layout->addWidget( m_ui = new KoGeneralPropertyUI( this ) );
+ TQVBoxLayout *tqlayout = new TQVBoxLayout( this );
+ tqlayout->addWidget( m_ui = new KoGeneralPropertyUI( this ) );
TQSpacerItem* spacer = new TQSpacerItem( 20, 20, TQSizePolicy::Minimum, TQSizePolicy::Expanding );
- layout->addItem( spacer );
+ tqlayout->addItem( spacer );
if ( m_generalValue.m_name.isNull() )
{