diff options
Diffstat (limited to 'kpresenter/KPrPropertyEditor.cpp')
-rw-r--r-- | kpresenter/KPrPropertyEditor.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kpresenter/KPrPropertyEditor.cpp b/kpresenter/KPrPropertyEditor.cpp index 3fe64f054..4e8ec38fb 100644 --- a/kpresenter/KPrPropertyEditor.cpp +++ b/kpresenter/KPrPropertyEditor.cpp @@ -36,8 +36,8 @@ #include <klocale.h> #include <kstdguiitem.h> -KPrPropertyEditor::KPrPropertyEditor( QWidget *parent, const char *name, KPrPage *page, KPrDocument *doc ) - : QTabDialog( parent, name, true ) +KPrPropertyEditor::KPrPropertyEditor( TQWidget *tqparent, const char *name, KPrPage *page, KPrDocument *doc ) + : TQTabDialog( tqparent, name, true ) , m_page( page ) , m_doc( doc ) , m_objects( page->getSelectedObjects() ) @@ -55,7 +55,7 @@ KPrPropertyEditor::KPrPropertyEditor( QWidget *parent, const char *name, KPrPage setOkButton( KStdGuiItem::ok().text() ); setApplyButton( KStdGuiItem::apply().text() ); - connect( this, SIGNAL( applyButtonPressed() ), this, SLOT( slotDone() ) ); + connect( this, TQT_SIGNAL( applyButtonPressed() ), this, TQT_SLOT( slotDone() ) ); m_objectProperties = new KPrObjectProperties( m_objects ); @@ -275,7 +275,7 @@ KCommand * KPrPropertyEditor::getCommand() macro = new KMacroCommand( i18n( "Apply Properties" ) ); } - QPtrListIterator<KPrObject> it( m_objects ); + TQPtrListIterator<KPrObject> it( m_objects ); for ( ; it.current(); ++it ) { KoRect oldRect = it.current()->getRect(); @@ -438,7 +438,7 @@ KPrGeneralProperty::GeneralValue KPrPropertyEditor::getGeneralValue() bool keepRatio = false; generalValue.m_keepRatio = STATE_OFF; - QPtrListIterator<KPrObject> it( m_objects ); + TQPtrListIterator<KPrObject> it( m_objects ); if ( it.current() ) { protect = it.current()->isProtect(); |