summaryrefslogtreecommitdiffstats
path: root/chalk/core/tiles/kis_memento.cc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-14 21:10:09 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-14 21:10:09 -0600
commite6cf8874a75a09b279e13f59e78b31804b1d6f83 (patch)
tree73cf4e5dee6ce00c4fa7d32243c322631c50712c /chalk/core/tiles/kis_memento.cc
parent35dc3d657c5d486b5233ce8e6ec74bf9656aaedf (diff)
downloadkoffice-e6cf8874a75a09b279e13f59e78b31804b1d6f83.tar.gz
koffice-e6cf8874a75a09b279e13f59e78b31804b1d6f83.zip
Update various qt function definitions and static methods for tqt3
Diffstat (limited to 'chalk/core/tiles/kis_memento.cc')
-rw-r--r--chalk/core/tiles/kis_memento.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chalk/core/tiles/kis_memento.cc b/chalk/core/tiles/kis_memento.cc
index aaec37242..c67a04763 100644
--- a/chalk/core/tiles/kis_memento.cc
+++ b/chalk/core/tiles/kis_memento.cc
@@ -23,10 +23,10 @@
KisMemento::KisMemento(TQ_UINT32 pixelSize) : KShared()
{
m_hashTable = new KisTile * [1024];
- Q_CHECK_PTR(m_hashTable);
+ TQ_CHECK_PTR(m_hashTable);
m_redoHashTable = new KisTile * [1024];
- Q_CHECK_PTR(m_redoHashTable);
+ TQ_CHECK_PTR(m_redoHashTable);
for(int i = 0; i < 1024; i++)
{