diff options
author | Martin Smith <msmith@trolltech.com> | 2009-05-25 08:12:27 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2009-05-25 08:27:53 (GMT) |
commit | de6a182226116df74e775ba4666e678d67ac94b7 (patch) | |
tree | dc5c49ed69a4496c00694a9579bff8f41bef0145 /src | |
parent | 3f7593fdab7263e486ded35a3276446f29efd99d (diff) | |
download | Qt-de6a182226116df74e775ba4666e678d67ac94b7.zip Qt-de6a182226116df74e775ba4666e678d67ac94b7.tar.gz Qt-de6a182226116df74e775ba4666e678d67ac94b7.tar.bz2 |
qdoc: Added some missing qdoc comments.
Task-number: 252493
(cherry picked from commit 878ccb0645e7f1416daeddd6acdc37fea16b5e25)
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/painting/qcolormap_mac.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/painting/qcolormap_mac.cpp b/src/gui/painting/qcolormap_mac.cpp index 4e13700..07f576c 100644 --- a/src/gui/painting/qcolormap_mac.cpp +++ b/src/gui/painting/qcolormap_mac.cpp @@ -55,11 +55,17 @@ public: }; static QColormap *qt_mac_global_map = 0; +/*! + Creates the class's internal colormap. + */ void QColormap::initialize() { qt_mac_global_map = new QColormap; } +/*! + Deletes the class's internal colormap. + */ void QColormap::cleanup() { delete qt_mac_global_map; |