From 9771f17f8cc5252b12ec5f3edf47ff9bffdf997f Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 1 Feb 2013 15:16:01 -0600 Subject: Rename a number of classes to enhance compatibility with KDE4 --- quanta/messages/annotationoutput.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'quanta/messages/annotationoutput.cpp') diff --git a/quanta/messages/annotationoutput.cpp b/quanta/messages/annotationoutput.cpp index e42eef5d..7ded7062 100644 --- a/quanta/messages/annotationoutput.cpp +++ b/quanta/messages/annotationoutput.cpp @@ -41,7 +41,7 @@ AnnotationOutput::AnnotationOutput(TQWidget *parent, const char *name) m_currentFileAnnotations = new MessageOutput(this); addTab(m_currentFileAnnotations, i18n("Current File")); - m_yourAnnotations = new KListView(this); + m_yourAnnotations = new TDEListView(this); m_yourAnnotations->addColumn("1", -1); m_yourAnnotations->addColumn("2", 0); m_yourAnnotations->setRootIsDecorated(true); @@ -52,7 +52,7 @@ AnnotationOutput::AnnotationOutput(TQWidget *parent, const char *name) connect(m_yourAnnotations, TQT_SIGNAL(executed(TQListViewItem*)), TQT_SLOT(yourAnnotationsItemExecuted(TQListViewItem *))); - m_allAnnotations = new KListView(this); + m_allAnnotations = new TDEListView(this); m_allAnnotations->addColumn("1", -1); m_allAnnotations->addColumn("2", 0); m_allAnnotations->setRootIsDecorated(true); @@ -162,14 +162,14 @@ void AnnotationOutput::readAnnotations() s.fill('0', 20 - lineText.length()); lineText.prepend(s); } - KListViewItem *fileIt = m_annotatedFileItems[fileName]; + TDEListViewItem *fileIt = m_annotatedFileItems[fileName]; if (!fileIt) { - fileIt = new KListViewItem(m_allAnnotations, fileName); + fileIt = new TDEListViewItem(m_allAnnotations, fileName); m_annotatedFileItems.insert(fileName, fileIt); m_fileNames[fileIt] = u.url(); } - KListViewItem *it = new KListViewItem(fileIt, fileIt, text, lineText); + TDEListViewItem *it = new TDEListViewItem(fileIt, fileIt, text, lineText); if (openedItems.contains(fileName)) fileIt->setOpen(true); m_fileNames[it] = u.url(); @@ -178,14 +178,14 @@ void AnnotationOutput::readAnnotations() if (!yourself.isEmpty() && (receiver == yourself || roles.contains(receiver))) { m_yourAnnotationsNum++; - KListViewItem *fileIt = m_yourFileItems[fileName]; + TDEListViewItem *fileIt = m_yourFileItems[fileName]; if (!fileIt) { - fileIt = new KListViewItem(m_yourAnnotations, fileName); + fileIt = new TDEListViewItem(m_yourAnnotations, fileName); m_yourFileItems.insert(fileName, fileIt); m_yourFileNames[fileIt] = u.url(); } - KListViewItem *it = new KListViewItem(fileIt, fileIt, text, lineText); + TDEListViewItem *it = new TDEListViewItem(fileIt, fileIt, text, lineText); if (yourOpenedItems.contains(fileName)) fileIt->setOpen(true); m_yourFileNames[it] = u.url(); @@ -261,7 +261,7 @@ void AnnotationOutput::writeAnnotations(const TQString &fileName, const TQMap (item->parent()) != m_allAnnotations) + if (dynamic_cast (item->parent()) != m_allAnnotations) { emit clicked(m_fileNames[item], m_lines[item], 0); } else @@ -270,7 +270,7 @@ void AnnotationOutput::allAnnotationsItemExecuted(TQListViewItem *item) void AnnotationOutput::yourAnnotationsItemExecuted(TQListViewItem *item) { - if (dynamic_cast (item->parent()) != m_yourAnnotations) + if (dynamic_cast (item->parent()) != m_yourAnnotations) { emit clicked(m_yourFileNames[item], m_yourLines[item], 0); } else -- cgit v1.2.1