diff options
Diffstat (limited to 'kspread/kspread_generalProperty.cpp')
-rw-r--r-- | kspread/kspread_generalProperty.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kspread/kspread_generalProperty.cpp b/kspread/kspread_generalProperty.cpp index 506626bf..d2518494 100644 --- a/kspread/kspread_generalProperty.cpp +++ b/kspread/kspread_generalProperty.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> @@ -38,11 +38,11 @@ GeneralProperty::GeneralProperty( TQWidget *parent, const char *name, GeneralVal , 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() ) { |