From 2fbdf2c0982e3e2147774c2034c21aebb67f732d Mon Sep 17 00:00:00 2001 From: Mavridis Philippe Date: Fri, 9 Aug 2024 14:49:43 +0300 Subject: Qt3->TQt port Signed-off-by: Mavridis Philippe --- src/altitemelement.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/altitemelement.cpp') diff --git a/src/altitemelement.cpp b/src/altitemelement.cpp index 63e9b00..58fa2e0 100644 --- a/src/altitemelement.cpp +++ b/src/altitemelement.cpp @@ -23,13 +23,13 @@ #include "altcontroller.h" #include "altparser.h" -#include +#include #include #include /******************************* AltItemElement ********************/ AltItemElement::AltItemElement(KListView *parent, Alternative *alternative) -: QCheckListItem(parent, "", QCheckListItem::RadioButton), +: TQCheckListItem(parent, "", TQCheckListItem::RadioButton), m_alt(alternative), m_parent(parent), m_bisBroken(alternative->isBroken()), @@ -48,7 +48,7 @@ AltItemElement::~AltItemElement() void AltItemElement::searchDescription() { - QString exec = m_path; + TQString exec = m_path; int posSlash = exec.findRev("/"); if (posSlash != -1) @@ -110,7 +110,7 @@ void AltItemElement::slotDescriptionTermined(KProcess *proc) void AltItemElement::slotGetDescription(KProcess *, char *buffer, int buflen) { - m_desc += QString::fromLatin1(buffer, buflen); + m_desc += TQString::fromLatin1(buffer, buflen); } -- cgit v1.2.3