summaryrefslogtreecommitdiffstats
path: root/karbon
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 /karbon
parent35dc3d657c5d486b5233ce8e6ec74bf9656aaedf (diff)
downloadkoffice-e6cf8874a75a09b279e13f59e78b31804b1d6f83.tar.gz
koffice-e6cf8874a75a09b279e13f59e78b31804b1d6f83.zip
Update various qt function definitions and static methods for tqt3
Diffstat (limited to 'karbon')
-rw-r--r--karbon/karbon_tool_factory.h2
-rw-r--r--karbon/widgets/vruler.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/karbon/karbon_tool_factory.h b/karbon/karbon_tool_factory.h
index c714268a..149d9c63 100644
--- a/karbon/karbon_tool_factory.h
+++ b/karbon/karbon_tool_factory.h
@@ -44,7 +44,7 @@ public:
virtual VTool * createTool( KActionCollection * ac, KarbonView* view )
{
VTool * t = new T( view );
- Q_CHECK_PTR(t);
+ TQ_CHECK_PTR(t);
t -> setup(ac);
return t;
}
diff --git a/karbon/widgets/vruler.cc b/karbon/widgets/vruler.cc
index 28b7db9f..c0ff0a20 100644
--- a/karbon/widgets/vruler.cc
+++ b/karbon/widgets/vruler.cc
@@ -98,7 +98,7 @@ void VRuler::recalculateSize()
}
m_pixmapBuffer = new TQPixmap(w, h);
- Q_CHECK_PTR(m_pixmapBuffer);
+ TQ_CHECK_PTR(m_pixmapBuffer);
drawRuler();
updatePointer(m_currentPosition, m_currentPosition);