summaryrefslogtreecommitdiffstats
path: root/src/gui/painting/qpaintdevice.qdoc
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2009-11-13 10:18:35 +0100
committerMartin Smith <msmith@trolltech.com>2009-11-13 10:19:23 +0100
commitc94bca6bb7414cd96ced9cb4f7a34164a65159aa (patch)
treea88e1d3e889b9988f6409475805ccaa3a89ea687 /src/gui/painting/qpaintdevice.qdoc
parente287f1b01dd50106f58967861a1c272b248d450a (diff)
doc: Changed numColors() to colorCount() in the doc.
Diffstat (limited to 'src/gui/painting/qpaintdevice.qdoc')
-rw-r--r--src/gui/painting/qpaintdevice.qdoc23
1 files changed, 18 insertions, 5 deletions
diff --git a/src/gui/painting/qpaintdevice.qdoc b/src/gui/painting/qpaintdevice.qdoc
index 6c0b04c95c..f661bf7739 100644
--- a/src/gui/painting/qpaintdevice.qdoc
+++ b/src/gui/painting/qpaintdevice.qdoc
@@ -83,7 +83,7 @@
inch. The physicalDpiX() and physicalDpiY() functions also return
the resolution of the device in dots per inch, but note that if
the logical and vertical resolution differ, the corresponding
- QPaintEngine must handle the mapping. Finally, the numColors()
+ QPaintEngine must handle the mapping. Finally, the colorCount()
function returns the number of different colors available for the
paint device.
@@ -111,7 +111,7 @@
also heightMM().
\value PdmNumColors The number of different colors available for
- the paint device. See also numColors().
+ the paint device. See also colorCount().
\value PdmDepth The bit depth (number of bit planes) of the paint
device. See also depth().
@@ -234,10 +234,23 @@
/*!
\fn int QPaintDevice::colorCount() const
+ \obsolete
+
+ Use colorCount() instead.
+
Returns the number of different colors available for the paint
- device. Since this value is an int, it will not be sufficient to represent
- the number of colors on 32 bit displays, in this case INT_MAX is
- returned instead.
+ device. Since this value is an int, it will not be sufficient to
+ represent the number of colors on 32 bit displays, in this case
+ INT_MAX is returned instead.
+*/
+
+/*!
+ \fn int QPaintDevice::colorCount() const
+
+ Returns the number of different colors available for the paint
+ device. Since this value is an int, it will not be sufficient to
+ represent the number of colors on 32 bit displays, in this case
+ INT_MAX is returned instead.
*/
/*!