summaryrefslogtreecommitdiffstats
path: root/kspread/plugins/calculator/stats.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
commitf008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch)
tree8e9244c4d4957c36be81e15b566b4aa5ea26c982 /kspread/plugins/calculator/stats.h
parent1210f27b660efb7b37ff43ec68763e85a403471f (diff)
downloadkoffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz
koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kspread/plugins/calculator/stats.h')
-rw-r--r--kspread/plugins/calculator/stats.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kspread/plugins/calculator/stats.h b/kspread/plugins/calculator/stats.h
index 1f325a20..3c20881f 100644
--- a/kspread/plugins/calculator/stats.h
+++ b/kspread/plugins/calculator/stats.h
@@ -2,7 +2,7 @@
$Id: stats.h 466447 2005-10-02 17:54:10Z zander $
KCalc, a scientific calculator for the X window system using the
- Qt widget libraries, available at no cost at http://www.troll.no
+ TQt widget libraries, available at no cost at http://www.troll.no
Copyright (C) 1996 Bernd Johannes Wuebben
wuebben@math.cornell.edu
@@ -27,7 +27,7 @@
#ifndef KSTATS_H
#define KSTATS_H
-#include <qptrlist.h>
+#include <tqptrlist.h>
#include <math.h>
#include "kcalctype.h"
@@ -59,17 +59,17 @@ public:
private:
- QPtrList<CALCAMNT> data;
+ TQPtrList<CALCAMNT> data;
bool error_flag;
};
-class MyList : public QPtrList<CALCAMNT>
+class MyList : public TQPtrList<CALCAMNT>
{
public:
- MyList() : QPtrList<CALCAMNT>() {};
+ MyList() : TQPtrList<CALCAMNT>() {};
protected:
int compareItems(Item item1,Item item2);