diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2023-12-06 09:52:05 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2023-12-06 10:55:00 +0100 |
commit | abd5e8f9a2f6f092f7d428e453286abad86acd06 (patch) | |
tree | 5e8bd2e5a35a3e30880163725089ce8e69b76b93 /kommander | |
parent | 37f6b15cfbb9d49b805335435369a3a7544a6b1b (diff) | |
download | tdewebdev-abd5e8f9a2f6f092f7d428e453286abad86acd06.tar.gz tdewebdev-abd5e8f9a2f6f092f7d428e453286abad86acd06.zip |
Fix FTBFS from prior commit.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 447a1693bfd52e1c2c358d0df1e21cf9a56e888c)
Diffstat (limited to 'kommander')
-rw-r--r-- | kommander/editor/resource.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kommander/editor/resource.cpp b/kommander/editor/resource.cpp index b369118e..7122abba 100644 --- a/kommander/editor/resource.cpp +++ b/kommander/editor/resource.cpp @@ -1099,9 +1099,9 @@ void Resource::saveProperty( TQObject *w, const TQString &name, const TQVariant num = value.toInt(); if ( w && w->inherits( "TQLayout" ) ) { if ( name == "spacing" ) - num = MetaDataBase::spacing( WidgetFactory::containerOfWidget( WidgetFactory::layoutParent( w ) ) ); + num = MetaDataBase::spacing( WidgetFactory::containerOfWidget( WidgetFactory::layoutParent( (TQLayout*)w ) ) ); else if ( name == "margin" ) - num = MetaDataBase::margin( WidgetFactory::containerOfWidget( WidgetFactory::layoutParent( w ) ) ); + num = MetaDataBase::margin( WidgetFactory::containerOfWidget( WidgetFactory::layoutParent( (TQLayout*)w ) ) ); } ts << makeIndent( indent ) << "<number>" << TQString::number( num ) << "</number>" << endl; break; @@ -1117,9 +1117,9 @@ void Resource::saveProperty( TQObject *w, const TQString &name, const TQVariant unum = value.toUInt(); if ( w && w->inherits( "TQLayout" ) ) { if ( name == "spacing" ) - num = MetaDataBase::spacing( WidgetFactory::layoutParent( w ) ); + num = MetaDataBase::spacing( WidgetFactory::layoutParent( (TQLayout*)w ) ); else if ( name == "margin" ) - num = MetaDataBase::margin( WidgetFactory::layoutParent( w ) ); + num = MetaDataBase::margin( WidgetFactory::layoutParent( (TQLayout*)w ) ); } ts << makeIndent( indent ) << "<number>" << TQString::number( unum ) << "</number>" << endl; break; |