diff options
Diffstat (limited to 'lib/kofficecore/KoDetailsPane.cpp')
| -rw-r--r-- | lib/kofficecore/KoDetailsPane.cpp | 44 | 
1 files changed, 22 insertions, 22 deletions
| diff --git a/lib/kofficecore/KoDetailsPane.cpp b/lib/kofficecore/KoDetailsPane.cpp index 7fcf11649..457f29440 100644 --- a/lib/kofficecore/KoDetailsPane.cpp +++ b/lib/kofficecore/KoDetailsPane.cpp @@ -100,11 +100,11 @@ KoTemplatesPane::KoTemplatesPane(TQWidget* parent, TDEInstance* instance,    TDEConfigGroup cfgGrp(d->m_instance->config(), "TemplateChooserDialog");    TQString fullTemplateName = cfgGrp.readPathEntry("FullTemplateName");    d->m_alwaysUseTemplate = cfgGrp.readPathEntry("AlwaysUseTemplate"); -  connect(m_alwaysUseCheckBox, TQT_SIGNAL(clicked()), this, TQT_SLOT(alwaysUseClicked())); +  connect(m_alwaysUseCheckBox, TQ_SIGNAL(clicked()), this, TQ_SLOT(alwaysUseClicked()));    changePalette();    if(kapp) { -    connect(kapp, TQT_SIGNAL(tdedisplayPaletteChanged()), this, TQT_SLOT(changePalette())); +    connect(kapp, TQ_SIGNAL(tdedisplayPaletteChanged()), this, TQ_SLOT(changePalette()));    }    TDEListViewItem* selectItem = 0; @@ -125,13 +125,13 @@ KoTemplatesPane::KoTemplatesPane(TQWidget* parent, TDEInstance* instance,      }    } -  connect(m_documentList, TQT_SIGNAL(selectionChanged(TQListViewItem*)), -          this, TQT_SLOT(selectionChanged(TQListViewItem*))); -  connect(m_documentList, TQT_SIGNAL(doubleClicked(TQListViewItem*, const TQPoint&, int)), -          this, TQT_SLOT(openTemplate(TQListViewItem*))); -  connect(m_documentList, TQT_SIGNAL(returnPressed(TQListViewItem*)), -          this, TQT_SLOT(openTemplate(TQListViewItem*))); -  connect(m_openButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(openTemplate())); +  connect(m_documentList, TQ_SIGNAL(selectionChanged(TQListViewItem*)), +          this, TQ_SLOT(selectionChanged(TQListViewItem*))); +  connect(m_documentList, TQ_SIGNAL(doubleClicked(TQListViewItem*, const TQPoint&, int)), +          this, TQ_SLOT(openTemplate(TQListViewItem*))); +  connect(m_documentList, TQ_SIGNAL(returnPressed(TQListViewItem*)), +          this, TQ_SLOT(openTemplate(TQListViewItem*))); +  connect(m_openButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(openTemplate()));    if(selectItem) {      m_documentList->setSelected(selectItem, true); @@ -284,7 +284,7 @@ KoRecentDocumentsPane::KoRecentDocumentsPane(TQWidget* parent, TDEInstance* inst    changePalette();    if(kapp) { -    connect(kapp, TQT_SIGNAL(tdedisplayPaletteChanged()), this, TQT_SLOT(changePalette())); +    connect(kapp, TQ_SIGNAL(tdedisplayPaletteChanged()), this, TQ_SLOT(changePalette()));    }    TQString oldGroup = instance->config()->group(); @@ -334,23 +334,23 @@ KoRecentDocumentsPane::KoRecentDocumentsPane(TQWidget* parent, TDEInstance* inst    instance->config()->setGroup( oldGroup ); -  connect(m_documentList, TQT_SIGNAL(selectionChanged(TQListViewItem*)), -          this, TQT_SLOT(selectionChanged(TQListViewItem*))); -  connect(m_documentList, TQT_SIGNAL(clicked(TQListViewItem*)), -          this, TQT_SLOT(selectionChanged(TQListViewItem*))); -  connect(m_documentList, TQT_SIGNAL(doubleClicked(TQListViewItem*, const TQPoint&, int)), -          this, TQT_SLOT(openFile(TQListViewItem*))); -  connect(m_documentList, TQT_SIGNAL(returnPressed(TQListViewItem*)), -          this, TQT_SLOT(openFile(TQListViewItem*))); -  connect(m_openButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(openFile())); +  connect(m_documentList, TQ_SIGNAL(selectionChanged(TQListViewItem*)), +          this, TQ_SLOT(selectionChanged(TQListViewItem*))); +  connect(m_documentList, TQ_SIGNAL(clicked(TQListViewItem*)), +          this, TQ_SLOT(selectionChanged(TQListViewItem*))); +  connect(m_documentList, TQ_SIGNAL(doubleClicked(TQListViewItem*, const TQPoint&, int)), +          this, TQ_SLOT(openFile(TQListViewItem*))); +  connect(m_documentList, TQ_SIGNAL(returnPressed(TQListViewItem*)), +          this, TQ_SLOT(openFile(TQListViewItem*))); +  connect(m_openButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(openFile()));    m_documentList->setSelected(m_documentList->firstChild(), true);    d->m_previewJob = TDEIO::filePreview(fileList, 200, 200); -  connect(d->m_previewJob, TQT_SIGNAL(result(TDEIO::Job*)), this, TQT_SLOT(previewResult(TDEIO::Job*))); -  connect(d->m_previewJob, TQT_SIGNAL(gotPreview(const KFileItem*, const TQPixmap&)), -          this, TQT_SLOT(updatePreview(const KFileItem*, const TQPixmap&))); +  connect(d->m_previewJob, TQ_SIGNAL(result(TDEIO::Job*)), this, TQ_SLOT(previewResult(TDEIO::Job*))); +  connect(d->m_previewJob, TQ_SIGNAL(gotPreview(const KFileItem*, const TQPixmap&)), +          this, TQ_SLOT(updatePreview(const KFileItem*, const TQPixmap&)));  }  KoRecentDocumentsPane::~KoRecentDocumentsPane() | 
