summaryrefslogtreecommitdiffstats
path: root/src/altitemelement.cpp
diff options
context:
space:
mode:
authorMavridis Philippe <mavridisf@gmail.com>2024-08-09 14:49:43 +0300
committerMavridis Philippe <mavridisf@gmail.com>2024-08-09 14:49:43 +0300
commit2fbdf2c0982e3e2147774c2034c21aebb67f732d (patch)
tree9a40eed04425f26d1b3e2adea3f4b091299b84d3 /src/altitemelement.cpp
parent47becbedc6788937ab25df5220f0bf25291b62e8 (diff)
downloadtdealternatives-2fbdf2c0982e3e2147774c2034c21aebb67f732d.tar.gz
tdealternatives-2fbdf2c0982e3e2147774c2034c21aebb67f732d.zip
Qt3->TQt port
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
Diffstat (limited to 'src/altitemelement.cpp')
-rw-r--r--src/altitemelement.cpp8
1 files changed, 4 insertions, 4 deletions
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 <qtimer.h>
+#include <tqtimer.h>
#include <klocale.h>
#include <kdebug.h>
/******************************* 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);
}